The sys.path tag has no wiki summary.
1
vote
1answer
25 views
Pylint - How to print Pylint's sys.path?
I'm attempting to add modules to my Pylint path so they can be imported by using the solution as seen in this question. Unfortunately, the modules I expect should be available for import after using ...
1
vote
1answer
203 views
setting import module path in Jython - strange behavior
I'm building Java to Jython bridge class.
The task I'm trying to solve is to make Jython to look for python modules in my application working directory (also known as program execution directory).
...
5
votes
2answers
258 views
Why python finds module instead of package if they have the same name?
Here is my directory structure:
/home/dmugtasimov/tmp/name-res
root
tests
__init__.py
test_1.py
__init__.py
classes.py
extra.py
...
4
votes
1answer
98 views
Restrict import to specific path, without restricting the imported module's path
Is it possible to import a module from a specific directory, without affecting the import path of the imported module?
If I was to temporarily replace sys.path with the desired directory, the ...
0
votes
0answers
91 views
py2app — importing external modules
Can py2app be set up such that the typical contents of a user's sys.path (when running python, not a py2app .app) are appended at the end of the path that py2app sets up?
I am bundling an application ...
1
vote
0answers
244 views
Java with Jython, elegant way to solve path trouble?
i have piece of Java code, using Jython to call some Python library, this library rely on external Jython classic libraryies like re for regular expression and others, so i have this kind of code :
...
6
votes
2answers
1k views
How is the python module search path determined on Mac OS X?
When a non built-in module is imported, the interpreter searches in the locations given by sys.path. sys.path is initialized from these locations (http://docs.python.org/library/sys.html#sys.path):
...
3
votes
1answer
390 views
dist-packages and sys.path
I have some code inside myapplication that look for some files inside myapplications' directories. I'm working with AptanaStudio, and I see that my code run OK, but when I create the debian package ...
0
votes
1answer
236 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
272 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 ...
1
vote
5answers
2k 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, ...
2
votes
2answers
2k 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 ...
4
votes
2answers
386 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 ...
4
votes
2answers
202 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
3answers
194 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 ...
0
votes
4answers
420 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 ...
1
vote
1answer
425 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 ...
6
votes
2answers
2k 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 ...
14
votes
5answers
6k 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 ...
2
votes
3answers
367 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
2answers
196 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 ...
