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

0
votes
2answers
21 views

Error to launch IPython shell after source install

I have an account in a CentOS server without sudo permission. As a result, I tried to install IPython from source code by python setup.py prefix=<my home directory>. However, I got the Error: ...
1
vote
1answer
31 views

Changing PYTHONPATH on mac

So I tried to change PYTHONPATH in mac terminal and this is how it went: >>> PYTHONPATH = "${PYTHONPATH}:~/Desktop/Python/Modules" >>> export PYTHONPATH File "<stdin>", line 1 ...
0
votes
0answers
11 views

Installing alglib for python in windows

I followed these instructions after placing the unzipped alglib python download in the C:\Python27\Lib\site-packages directory. Running setup.py does create an alglib.dll in the ...
0
votes
1answer
25 views

Using cython extension once compiled [under Windows], how to use .pyd's?

I am used with compiling self-made python extensions under Linux using Cython. On Linux, I use distutils to produce a "myext.so", that I can then simply add to my PYTHONPATH and get the import myext ...
-3
votes
0answers
28 views

Errors when trying to run python modules

I am trying to run simple python modules like python hello.py or python fibo.py from the command line however whenever I do so I get a syntax error when I run from >>> and I get a Errno 2 no such file ...
1
vote
0answers
36 views

using pip to install packages locally in spite of satisfied global requirements

I am trying to use pip to install a package locally in ~/.local. The problem is that the package (in an older version) is already available globally on the system. Even though the global python ...
0
votes
0answers
12 views

How to completely restore pythonpath?

I've had a few problems configuring a Django app (Miro Community), which was installed into a virtualenv on my Centos 6.0 Apache server. So, I removed the virtualenv and wish to start again. However ...
0
votes
1answer
81 views

adding directory to sys.path /PYTHONPATH

I am trying to import a module from a particular directory. The problem is that if I use sys.path.append(mod_directory) to append the path and then open the python interpreter, the directory ...
0
votes
1answer
15 views

How to use a package from another project in PyDev

I have read this, but it didn't work for me. These are the steps I used: Right-click project1 > Properties > Project References > select project2R Right-click project1 > Properties > PyDev - ...
0
votes
3answers
71 views

How to flexibly change PYTHONPATH

To specify the classpath in Java, I use the -cp or -classpath option to java. What is the equivalent option in Python? I know I can set the OS variable PYTHONPATH but there shouldn't be one ...
0
votes
2answers
60 views

PYTHONPATH: command line calls on Windows 7

There are python scripts with command line arguments that I'd like to call from any location on my PC. The idea is to share the corresponding package with others so they can open up a CMD window and ...
0
votes
1answer
137 views

How to pass a variable file path to Robot Framework located on PYTHONPATH?

Environment: Robot Framework 2.7.5 (Jython 2.5.2 on java1.6.0_21) Tomcat 7.0.32 Hi, I am using RF embedded on a Java web application and am I having issues passing the --variablefile argument into ...
0
votes
0answers
11 views

Indexing and searching using Python 2.7.2

I have a separate document corpus which contains afan oromo documents and its stopwords. things like stemming, tfidf calculation and vector space modeling issues should be incorporated. I want my ...
1
vote
1answer
185 views

Gunicorn+Django+Heroku. Python Path Issue

I'm running a Django app that I used to deploy to Heroku with Gunicorn without a hitch. By that I mean that I could run foreman start on my localhost and be able to understand whether the ...
1
vote
1answer
165 views

Boost Python Hello World example not working in Python, AGAIN

I have the same problem than the guy here Boost Python Hello World example not working in Python who solved his problem, without indicating how. The posts there being quite old, after having posted ...
-1
votes
2answers
40 views

from appname.models import Publisher, Author, Book

Very new to Django so please bear with me. Following along with the Django polls project using The Django Book's classes (Publisher, Author, Book). I've been stuck on importing my models in the shell. ...
0
votes
0answers
47 views

Understanding Pythonpath and Installing Modules and being able to use them

Blockquote I am a beginner at all of this, and so I need basic instructions, and hopefully a bit of instruction on how this works. I am attempting to write code that just displays an image on ...
0
votes
2answers
73 views

Embedding python scripting installation ImportError: No module named site

Hi I have created an application that allows end user python scripting. The main portion of the application is written in python, this I have compiled away to an exe using pyinstaller this is fine ...
1
vote
2answers
42 views

Execute script ignoring user's PYTHONPATH

I have a set of scripts, that are executed using a specific python installation (set with a first line #!). There are a few different python installations on the network, and different groups have ...
0
votes
1answer
33 views

Having two python paths

When running python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())" I see that the lib is: /usr/local/lib/python2.6/site-packages BUT when installing some ...
0
votes
2answers
86 views

django-admin.py and proper way to alter PYTHONPATH on Dotcloud?

I don't have a manage.py and use different settings for DJANGO_SETTINGS_MODULE and django-admin.py to switch between development and production environments. This is suggested both by Django docs and ...
0
votes
1answer
209 views

Changing PYTHONPATH in shell [closed]

I'm a completely new user to Python and shell scripts, and have run into a dead end with this, even after Googling the issue and banging my head against the desk a lot. Any help is appreciated! I'm ...
2
votes
1answer
46 views

How do I systematically identify the dependencies Python has across its accessible package/module tree?

Question: How can I systematically probe into files that are involved at any time by the interpreter (like in debug mode). When everything fails I get error message. What I ask for is the opposite: ...
0
votes
1answer
87 views

Trouble with deploying Django app w/ git submodule

I'll try to skinny this question as best as I can so that it's not too vague. So I'm using this plugin—https://github.com/alex/django-ajax-validation—in a Django app. I'm fairly certain that the ...
1
vote
3answers
113 views

Where does python look for files in a script? [duplicate]

So I've just coded this class for a title screen and it works well. However, one of the people I'm working with on the project mentioned that I shouldn't use: os.chdir(os.getcwd() + "/..") resource ...
0
votes
0answers
41 views

Why python appends script dir diffrently in windows and linux to pythonpath?

I've got this structure: test dir: . ├── __init__.py └── nested ├── __init__.py └── test.py Then i'm running script (python2.7) like this: ~/tmp/test$./nested/test.py test.py: import ...
3
votes
2answers
183 views

set pythonpath before import statements

My code is: import scriptlib.abc import scriptlib.xyz def foo(): ... some operations but the scriptlib is in some other directory, so I will have to include that directory in environment ...
2
votes
1answer
70 views

Import issues - is my Jython installed correctly?

I'm starting using Jython. I noted that sys.path is completely different when Jython is executed from the command line than from Eclipse. Command line tk:~$ jython Jython 2.5.3 (2.5:c56500f08d34+, ...
0
votes
1answer
69 views

Supervisor not updating PYTHONPATH variable

I have the following Supervisor config [program:do_thing] command = python -u stuff/do_thing.py directory = /home/ubuntu/code/processing environment = ...
0
votes
1answer
226 views

Python Pyglet - 'No module named window'

I'm now working on Ubuntu to try and solve this. I am trying to get Pyglet to work in a .py script. So, I am using the default install of Python on Ubuntu (2.7.3, Ubuntu v = 12.4). I used: sudo ...
0
votes
1answer
64 views

ipython %run testscript_in_pythonpath.py returns “no file found” error

I would like to use the %run magic command to run a script in a directory which is in the pythonpath variable. The script reads some files in the working directory. However, when I try to run the ...
0
votes
2answers
178 views

PYTHONPATH vs symbolic link

Yesterday, I edited the bin/activate script of my virtualenv so that it sets the PYTHONPATH environment variable to include a development version of some external package. I had to do this because the ...
1
vote
2answers
112 views

Is it possible to use multiple paths for PYTHONPATH on Windows?

I have a clean virtual machine with XP SP3 32-bit and ActivePython 2.7.2 32-bit community edition, current dir is "C:\test". I have placed sitecustomize.py with "print( 'dir1' )" code indie ...
0
votes
1answer
75 views

Python2.7 searches the unwanted directory when importing modules

I tried to use Python 2.7 to import numpy. Configuration that may cause the problem Two Python interpreter installed on my computer, Python 2.4 and 2.7 two copies of numpy installed, one in my home ...
0
votes
1answer
61 views

ImportError: no mudule named ini

I have a directory structure like akom DB DBinit.py __init__.py server.py Configuration(dir) urls.py settings.py manage.py ini.py __init__.py I have set ...
0
votes
0answers
91 views

How to set a windows env variable from cygwin .bashrc?

Background: I am trying to run a windows-installed version of python from within cygwin, rather than the cygwin version (some packages I am using prefer the non-cygwin version). The following post got ...
0
votes
1answer
116 views

Does uwsgi server read the paths in the environment variable PYTHONPATH?

Its weird because, when I run a normal python script on the server, it runs but when I run it via uWSGI, it cant import certain modules. there is a bash script that starts uwsgi, and passes a path ...
2
votes
1answer
279 views

Setting a proper version of Python and PYTHONPATH variable in emacs

I'm trying to learn Emacs developing for Python and I have discovered some of my projects don't work because of modules import problem, namely SciPy or NumPy are not imported. I've tried solutions ...
0
votes
1answer
115 views

Jython: Is there any difference between adding to sys.path vs passing -D?

I have a python application that is trying to load some Java libraries (specifically Axis2 web services). When I add the necessary jars in Eclipse via PyDev Project Source Folders, everything seems to ...
1
vote
4answers
148 views

Module name different than directory name?

Let's assume I have a python package called bestpackage. Convention dictates that bestpacakge would also be a directory on sys.path that contains an __init__.py to make the interpreter assume it can ...
3
votes
0answers
76 views

VCS and Python project structure: How to setup the PYTHONPATH automatically?

There are many suggestions on the web what the structure of the Python project can/shall be, e.g. What is the best project structure for a Python application?. "proj-dir" +- doc +- apidoc +- scripts ...
5
votes
1answer
294 views

Python Module imports in Terminal but not through Unix Shell

I'm just getting started with Python and need a little guidance. I'm using a Mac, but I have a python.org build of python installed as well as the original Apple install. I'm trying to load up some ...
0
votes
1answer
180 views

Python script shows different pythonpath

Attempting to run runsnake gives ImportError: No module named wx Opening an ipython or python session seems to work fine: >>> import wx >>> import sys >>> print [p for ...
1
vote
1answer
564 views

WSGIPythonPath is not working

I am deploying my web.py application on Apache2 with mod_wsgi. Here is my virt_host file, WSGIPythonPath /home/ubuntu/plotwatt/libplotwatt:/home/ubuntu/plotwatt/pwstage/src <VirtualHost ...
2
votes
4answers
320 views

cannot run python script file using windows prompt

I am trying to run a python script from the windows command prompt, but I receive the following error message: "python: can't open file 'pacman.py': [Errno 2] No such file or directory" when I try ...
0
votes
2answers
145 views

Adding files to PYTHONPATH in OS X

Okay, I am tearing my hair out trying to do this. I've read through dozens of webpages and they've all given me contradictory information, and none of what they've told me to do has worked. I have a ...
0
votes
0answers
66 views

automatic set python module path like maven?

in maven, when I run tests, the sources in src/ are automatically sourced. now I organize my python code in a similar dir structure. but when I run unitttests, python -m unittests tests it says that ...
0
votes
1answer
157 views

Problems with PYTHONPATH

From the command line (Mac OS), when I execute 'echo $PYTHONPATH' I get: > /opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7 If I then enter the Python interpreter and do ...
0
votes
2answers
490 views

How to find PYTHONPATH on Redhat?

On Redhat, python 2.4.3 is installed. On that machine, we have an application that uses python 2.6 (strange, at least for me). I understand it this way: I start a command line from RedHat desktop and ...
1
vote
0answers
539 views

Incorrect PythonPath after editting bash_profile for Mac trying to install OpenCV

Total noob here trying to get OpenCV working on Python through Homebrew. I searched everywhere extensively and couldn't find an answer intelligible to me. 99% of what I have done for this install is ...

1 2 3 4