##// END OF EJS Templates
rm extra print
rm extra print

File last commit:

r704:ee1f755f
r732:ebdee07b
Show More
ipy_kitcfg.py
16 lines | 315 B | text/x-python | PythonLexer
#import IPython.ipapi
#ip = IPython.ipapi.get()
import os
def main():
root = os.environ.get('IPYKITROOT', None)
if not root:
print "Can't configure ipykit, IPYKITROOT should be set."
return
os.environ["PATH"] = os.environ["PATH"] + ";" + root + "\\bin;"
main()