kloop
kloop

Reputation: 4721

Why is PYTHONPATH being ignored?

I am setting PYTHONPATH to have a directory that includes a few .py files.

When I go into python and type "import file", the file cannot be find (it says "No module named wsj10").

If, however, I cd to the directory, and repeat the same process, then the file is found.

I am just not sure why PYTHONPATH is being ignored. I followed exact instructions from installation instructions of some software, so I know I am doing the right thing.

Any circumstances under which PYTHONPATH will be ignored, or import won't work?

Thanks.

Following a comment below, here is a transcript:

  1. untar file1.tgz to file1/. file1.tgz contains a library/file called file1.py.

  2. type in the shell:

    export PYTHONPATH=`pwd`/file1/:./
    
  3. echo $PYTHONPATH shows the variable was set.

  4. run python and type "import file1"

I get the error:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named file1

If I do first "cd file1" and then to import file1 it identifies the file.

Upvotes: 1

Views: 2325

Answers (1)

sdd
sdd

Reputation: 721

Any circumstances under which PYTHONPATH will be ignored, or import won't work?

Yes. I've set PYTHONPATH in my /home/me/.bashrc and all worked ok from terminal, but when Apache w/ mod_wsgi starts my python scripts, it acts under sysem or dedicated user, which knows nothing of my .bashrc.

For this particular situation, I just used apache config to set python path for apache (WSGIPythonPath option).

Upvotes: 1

Related Questions