Whenever I use sys.path.append, the new directory will be added. However, once I close python, the list will revert to the previous (default?) values. How do I permanently add a directory to PYTHONPATH?
Using Windows.
|
Whenever I use Using Windows.
| ||||
|
feedback
|
|
You need to add your new directory to the environment variable
| |||||||||||
feedback
|
|
If you're using bash (on a Mac or GNU/Linux distro), add this to your
| |||
|
feedback
|
|
You could add the path via your pythonrc file, which defaults to ~/.pythonrc on linux. ie.
You could also set the | |||
|
feedback
|
|
Just to add on awesomo's answer, you can also add that line into your | ||||
|
feedback
|