Tagged Questions

23
votes
7answers
655 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
479 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
12k 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 ...
8
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
130 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
214 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
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 > ...
4
votes
2answers
5k 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
81 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
100 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
142 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
164 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
2answers
887 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 ...
3
votes
1answer
6k 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 ...
2
votes
2answers
86 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
104 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
1k 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
371 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
171 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
88 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
598 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
3answers
217 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 ...
2
votes
3answers
582 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
2answers
43 views

Intrapackage module loads in python

I am just starting with python and have troubles understanding the searching path for intra-package module loads. I have a structure like this: top/ Top-level package ...
1
vote
2answers
40 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
64 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
126 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
105 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
174 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
106 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
213 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
232 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
77 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
541 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
126 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
741 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
297 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
112 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
4answers
255 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
273 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
108 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
142 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
107 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
1answer
183 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
vote
2answers
1k views

pythonpath issue? “python2.5: can't open file 'dev_appserver.py': [Errno 2] No such file or directory”

I added this line to my .bashrc (Ubuntu 9.10): export PYTHONPATH=/opt/google_appengine/ And then I ran the dev_appserver through python2.5 on Ubuntu like this: $ python2.5 dev_appserver.py ...

1 2