Tagged Questions

PYTHONPATH is an environment variable that Python uses to get the list of directories to search for modules and files

learn more… | top users | synonyms

22
votes
7answers
620 views

How to properly determine current script directory in Python?

I would like to see what is best way to determine current script directory in python? I discovered that two to the many ways of calling python code, it is hard to find a good solution. Here are some ...
21
votes
4answers
463 views

Best practice for reusing python code

I have write a python library app(which contains several *.py files). And several of my python projects need to reuse the code in the library app. What's the recommended best practice for reusing ...
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)?
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 ...
7
votes
4answers
2k views

Python - add PYTHONPATH during command line module run

I want to run: python somescript.py somecommand But, when I run this I need PYTHONPATH to include a certain directory. I can't just add it to my environment variables because the directory I want ...
6
votes
6answers
2k views

PyLint “Unable to import” error - how to set PYTHONPATH?

I'm running PyLint from inside Wing IDE on Windows. I have a sub-directory (package) in my project and inside the package I import a module from the top level, ie. __init__.py myapp.py one.py subdir\ ...
5
votes
3answers
123 views

Where to put a configuration file in Python?

In development mode, I have the following directory tree : | my_project/ | setup.py | my_project/ | __init__.py | main.py | conf/ | myproject.conf I use ConfigParser to parse ...
5
votes
5answers
1k views

How can I correct corrupted $PYTHONPATH?

When trying to launch Mercurial(hg) after a restart in my Ubuntu 9.10 Linux Box I got following message: abort: couldn't find mercurial libraries in [/usr/bin ...
4
votes
3answers
178 views

PYTHONPATH not working for sudo on GNU/Linux (works for root)

EDIT: Works for root, sudo is the problem. Read below. I have a directory with my own libraries, e.g. my Python libraries are located at /home/name/lib/py. I've added this directory to Python's PATH ...
4
votes
2answers
4k views

How do I make PyScripter work? Says it cant find python26.dll

I installed PyScript to try it out but it just wont start. It only gives me the error: "Error126: Could not open Dll "python26.dll" followed by: "Python could not be properly initialized. We must ...
3
votes
2answers
64 views

Where does Django store the project path?

I want to rename a project which I created with: django-admin.py startproject But after renaming the folder and all the references inside my project, I still can't get it to start. It says ...
3
votes
2answers
86 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
3answers
119 views

How exactly is Python2's sys.path set in Windows?

The Python documentation says that sys.path is "Initialized from the environment variable PYTHONPATH, plus an installation-dependent default." But what is the "installation-dependent default" exactly ...
3
votes
2answers
161 views

Django: What is `sys.path` supposed to be?

When developing a Django application, what is sys.path supposed to contain? The directory which contains the project, or the directory of the project, or both?
3
votes
4answers
6k views

How to add to the pythonpath in windows 7?

I have a directory which hosts all my django app. *"C:\My_Projects".* I want to add this directory to my pythonpath so I can call the apps directly. I have *right clicked My Computer > Properties > ...
3
votes
1answer
5k views

Add to python path mac os x

I thought import sys sys.path.append("/home/me/mydir") is appending a dir to my pythonpath if I print sys.path my dir is in there. Then I open a new command and it is not there anymore. But ...
3
votes
1answer
102 views

PYTHONPATH and PHP

I have a PHP script that call a python script (someone else I can't edit). This work fine on CLI but once I run it as CGI it fails with the error "bzr: ERROR: Couldn't import bzrlib and dependencies." ...
2
votes
2answers
65 views

Python relative imports within a package not on the path

How can I import a file that is in a parent directory within a python package (that is not on the path) into a file in a child dir? I'm not totally clear on the vocabulary of python packaging so by ...
2
votes
3answers
92 views

Automatically call common initialization code without creating __init__.py file

I have two directories in my project: project/ src/ scripts/ "src" contains my polished code, and "scripts" contains one-off Python scripts. I would like all the scripts to have "../src" ...
2
votes
4answers
3k views

django import error - No module named core.management

Ok, I see plenty of these errors around. I have tried everything I know to do and have yet to figure this out. I am working on a development server running python 2.5 and Django 1.3. Django 1.3 was ...
2
votes
1answer
909 views

PyCharm and PYTHONPATH issue: how and why PyCharm alter Python import logic?

I have a PyCharm 1.2.1 on Windows. I have to edit different branches of the same project - somewhat heavy branches, because they live in different folders on disk - say it to be c:\apps\alpha and ...
2
votes
3answers
301 views

Trying to Include pypoker, poker-eval package in Python

Ok, so i finally got poker-eval and pypoker to install correctly. If i go to the pypoker folder in cygwin, and type "python test.py", it runs the program fine. However, if i copy the test.py file over ...
2
votes
1answer
165 views

What are the PYTHONPATH and PYTHON_LIBRARY_PATH?

I have installed a package and cannot get it to work. I know that one of the possible reasons of this problem is incorrect (or not existing) values of certain environment variables. In particular, I ...
2
votes
1answer
86 views

Why is my system using my old PYTHONPATH after explicitly setting?

I am running a script that explicitly sets the PYTHONPATH to avoid naming collisions. However, even if I say os.environ['PYTHONPATH'] = '', it looks as though the system is still able to find my old ...
2
votes
1answer
556 views

How to set python IDLE to use pythonpath variable in Ubuntu 10.04

I have set a pythonpath variable in my ~/.bashrc and it works fine when using python interpreter from the command line and bpython, but IDLE is not recognizing it. How can I configure it to load the ...
2
votes
2answers
836 views

Python Pythonpath Modules install

I am kind of annoyed by the installation of modules in python and had a lot of trouble with it, so it would be fantastic to find a good solution for it. Heres my issues: PYTHONPATH: How can I tell ...
2
votes
3answers
213 views

PYTHONPATH hell with overlapping package structures

I'm having problems with my PythonPath on windows XP, and I'm wondering if I'm doing something wrong. Say that I have a project (created with Pydev) that has an src directory. Under src I have a ...
1
vote
2answers
29 views

proper way to distribute run scripts with python package?

Suppose I have a python package called mypackage, which has a series of scripts. Once mypackage is in the site-packages dir, the user can refer to various Python files within mypackage as ...
1
vote
2answers
57 views

subprocess running python getting import error

I'm trying to run a python script from a python program by kicking it off from subprocess (The reason is that the main program has to have exited when the script runs, with a combination of ...
1
vote
4answers
102 views

How to add to beginning Python path in bash

Here is my .bash_profile PYTHONPATH=".:/home/miki725/django/django:$PYTHONPATH" export PYTHONPATH So then I open python however the directory I add in .bash_profile is not the first one: Python ...
1
vote
2answers
98 views

PYTHONPATH - dynamic for different python installs?

On my CentOS5 server, I have both Python2.4 and 2.6 (2.4 is required for yum to work). I'm not sure what happened, but suddenly the system gets very confused every time I try to run a file whose ...
1
vote
0answers
150 views

Getting setuptools/easy_install to play nicely with PYTHONPATH

Why do setuptools/easy_install .pth files not place nicely with PYTHONPATH, and how do I get them to play nicely, and keep the directories in my PYTHONPATH before those .pth shoves in the sys.path? ...
1
vote
2answers
94 views

Importing a module which have the same name with a system module

My situation is similar to one in this question... The difference is, In our python/django project, we have a directory called utils, which keeps basic functions... Sometimes, we need to test some ...
1
vote
1answer
176 views

Pythonpath on Mac OSX

I read through Add to python path mac os x and I figured doing that is a good idea, but still IDLE gives me a syntax error for a simple call of open(filename, mode), so I looked a little bit further ...
1
vote
1answer
188 views

PyDev cannot find modules in the project source folder

Okay, so this is not the first time I've had this problem, but it really has driven me to the edge this time. The problem is this. I am developing something on Linux and Windows, sharing the workspace ...
1
vote
1answer
71 views

PYTHONPATH issues with versioned package names outside of site-packages

In attempting to solve a package management issue here, I learned I may have issues with the way I'm using PYTHONPATH to access packages outside of the site-packages directory. I receive an import ...
1
vote
2answers
461 views

Python setup.py install uses wrong Python installation path

I'm on a bluehost-server which has a "rudimental" installation of python2.6. I installed python2.6 in my user-directory which works fine so far, but when I try to install python packages with ...
1
vote
1answer
120 views

Pythonpath issue - Cocos2d

I'm trying to use a game library called Cocos2d in python. However, I can't really import it. It's installed in one of python's lib directories, and when I import it, it's saying that it's not there. ...
1
vote
2answers
603 views

Modules paths in Python

I have created a folder with all my modules for my GAE application and with external libraries like Jinja2 to keep everything sorted in one place. I have folders structure like this: lib\ \utils\ ...
1
vote
2answers
281 views

Mac Swampy (Python learning module) install help

I thought I would teach my kids programming and am using "Think Python" by Downey. Book is great except when he gets to installing "Swampy" a Turtle-like learning module. I've spent a few hours trying ...
1
vote
1answer
107 views

organizing many python scripts, in a large corporate environment

We've been doing a fair amount of Python scripting, and now we have a directory with almost a hundred loosely related scripts. It's obviously time to organize this, but there's a problem. These ...
1
vote
2answers
715 views

how to set environment variable for root user

I'm Mac user. I want to set PYTHONPATH env for root. so $ sudo su - # vi ~/.profile and add to file 'export PYTHONPATH=/mypythonlib' then # env I can see this line ...
1
vote
4answers
238 views

How to move old libraries of previous version python to new version of python

I am using Ubuntu. I install newer version of python. But all my installed libraries such as imdbPy, NumPy, Cython etc. can run in previous version of python whose version number is 2.6.6. When I ...
1
vote
1answer
261 views

Add the current project to the python path with Komodo Edit

Ive been using komodo edit recently to go through a few django tutorials, and ive been impressed with the level of code completion it provides for the framework. However what i really want it to do ...
1
vote
3answers
107 views

Developing and using the same Python on the same computer

I'm developing a Python utility module to help with file downloads, archives, etc. I have a project set up in a virtual environment along with my unit tests. When I want to use this module on the same ...
1
vote
2answers
133 views

Pythonpath Store

Where is my pythonpath stored? When I write import sys sys.path Where does python get that data?
1
vote
4answers
3k views

Permanently add a directory to PYTHONPATH

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 ...
1
vote
2answers
105 views

Python - How to PYTHONPATH with a complex directory structure?

Consider the following file\directory structure: project\ | django_project\ | | __init__.py | | django_app1\ | | | __init__.py | | | utils\ | | | | __init__.py | | | | bar1.py | | ...
1
vote
3answers
537 views

Force import module from Python standard library instead of PYTHONPATH default

I have a custom module in one of the directories in my PYTHONPATH with the same name as one of the standard library modules, so that when I import module_name, that module gets loaded. If I want to ...
1
vote
1answer
171 views

I have a very long and repetitive python path, where do I look to correct this?

I know it is probably not necessary to paste the whole path, but just for the record I have done so below. Whenever I run a python command, it takes a long time to load this path I suppose. I have ...

1 2