[Django]-How to set up Django development environment without installing?

4👍

You can manually set the path:

import sys
sys.path.append('/home/kevin/dir_with_module')

You may also want to look into setting up a virtual environment. This article has good information: http://www.clemesha.org/blog/modern-python-hacker-tools-virtualenv-fabric-pip/

Leave a comment