##// END OF EJS Templates
ipy_kitcfg is used for ipykit setup, 'bin' folder should contain various needed binaries
ipy_kitcfg is used for ipykit setup, 'bin' folder should contain various needed binaries

File last commit:

r704:ee1f755f
r704:ee1f755f
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()