Tagged Questions
The sys.path tag has no wiki summary.
11
votes
5answers
2k views
PYTHONPATH vs. sys.path
Another developer and I disagree about whether PYTHONPATH or sys.path should be used to allow Python to find a Python package in a user (e.g., development) directory.
We have a Python project with a ...
4
votes
2answers
871 views
How do you modify sys.path in Google App Engine (Python)?
I've tried adding the following line to my handler script (main.py), but it doesn't seem to work:
sys.path.append('subdir')
subdir lives in the my root directory (i.e. the one containing ...
3
votes
2answers
87 views
Application-specific PYTHONPATH
I have an application with a heirarchy of packages. There are a fair number of modules that reference other modules higher up in the package heirarchy. As exemplified below, I can use relative ...
3
votes
2answers
94 views
Python - Are there more search paths than in sys.path?
I thought that the sys.path was a complete list of all search paths for Python modules.
However, on my Ubuntu machine, '/usr/local/lib/python2.6/dist-packages/' is where almost all my modules are and ...
1
vote
2answers
198 views
Django Deployment: ImportError: Could not import settings 'settings.py' (Is it on sys.path?): No module named settings.py
Hi All and thank you for taking the time to look at my question.
I'm a newbie to Python, thought I have experience in php/mysql.
I was just handed a code repository of a django site and asked to get ...
1
vote
3answers
96 views
new sys.path in python
I am having difficulties importing a script from a directory that is not stored in sys.path. I have a script saved as test.py in a directory called "Development" and am trying to add the development ...
1
vote
3answers
158 views
How to upgrade the version of Python used by Apache?
On a Red hat box, I upgraded Python from 2.3 to 2.6.4 and changed the symlink to python so when I type in python the 2.6.4 interpreter comes up.
However my .py file works from the command-line, but ...
0
votes
1answer
52 views
Import Python [Whoosh python — don't understand import error]
I am new to lots of things.
I try to have Whoosh installed to look into the source code and play with it.
I add the path to folder containing setup.py and README.txt in sys.path, then
import ...
0
votes
3answers
92 views
web.py not importing MySQLdb
I'm working with web.py and for some reason I am getting the following error:
[Thu Sep 29 13:47:20 2011] [error] [client 64.8.210.120] File ...
0
votes
5answers
125 views
Add a directory to Python sys.path so that it's included each time I use Python
Currently, when trying to reference some library code, I'm doing this at the top of my python file:
import sys
sys.path.append('''C:\code\my-library''')
from my-library import my-library
Then, ...
0
votes
4answers
174 views
Is there anyway I can access File from Online SVN in python?
I've made a python module file and uploaded in the SVN Repo (say string_utl.py which does string related operation). Is the anyway that I can access the the file Direclty for the SVN. Though I ...
0
votes
1answer
187 views
How can I load the parent directory of a script as a module, without adding all of the siblings of that directory's parent directory to my sys.path?
I'm hoping there's an easy answer to this question that I'm simply overlooking.
Here's the setup:
foo/
__init__.py
run.py
Contents of run.py:
import foo
Run the script:
$ python run.py ...
0
votes
2answers
140 views
Is the first entry in sys.path supposed to represent the current working directory?
I had always assumed that the first entry in sys.path by default was the current working directory. But as it turns out, on my system the first entry is the path on which the script resides. So if ...