View Single Post
Old 10-28-2013, 10:32 AM   #7
bibihoma
Junior Member
bibihoma began at the beginning.
 
Posts: 5
Karma: 10
Join Date: Oct 2013
Device: kindle
Thanks Kovidgoyal!

I don't know how clean this solution is... but it works

In case someone has to use django and some more libs installed in python, here is a simple script that includes all the python site-packages:

libFoder = "c:/Python27/Lib/site-packages"
for root,dir, files in os.walk(libFoder):
sys.path.append(os.path.join(libFoder, root))
bibihoma is offline   Reply With Quote