Tagged Questions
16
votes
2answers
11k views
How do I find out my python path using python?
How do I find out which directories are listed in my system’s PYTHONPATH variable, from within a Python script (or the interactive shell)?
0
votes
3answers
71 views
pythonic module organization - how to refer to files in root directory?
I have my python code in a folder called "project", so my code files are in project/*.py. I want to have submodules within it, e.g.
project/code.py # where code lives
project/mymodule1 # where more ...
0
votes
1answer
141 views
Can't add directory to Python Path
In my .bashrc I added the following:
export PYTHONPATH=$PYTHONPATH:/home/tbao/src/Cython-0.14.1
When I relogin, I get the error:
-bash: /home/tbao/src/Cython-0.14.1: is a directory
I want to add ...