I am using Python 3.2 on Windows 7. When I open the Python shell, how can I know what the current directory is and how can I change it to another directory where my modules are?

link|improve this question

2  
This is not how you do it. – Ignacio Vazquez-Abrams Nov 23 '11 at 20:09
1  
@Ignacio, What do you mean? – astay13 Nov 23 '11 at 20:10
This has already been discussed [here] [1]: stackoverflow.com/questions/431684/how-do-i-cd-in-python – mudda Nov 23 '11 at 20:11
1  
@astay13 -- I think Ignacio means that you aren't intended to change directory to your module-path. You should probably check out the PYTHONPATH environment variable. – simon Nov 23 '11 at 20:12
feedback

5 Answers

up vote 4 down vote accepted

You can use the os module.

>>> import os
>>> os.getcwd()
'/home/user'
>>> os.chdir("/tmp/")
>>> os.getcwd()
'/tmp'

But if it's about finding other modules: You can set an environment variable called PYTHONPATH, under Linux would be like

export PYTHONPATH=/path/to/my/library:$PYTHONPATH

Then, the interpreter searches also at this place for imported modules. I guess the name would be the same under Windows, but don't know how to change.

edit

Under Windows:

set PYTHONPATH=%PYTHONPATH%;C:\My_python_lib

(taken from http://docs.python.org/using/windows.html)

link|improve this answer
you're right to edit your question to add the suggestion about PYTHONPATH, but note that the OP specifies Windows... – simon Nov 23 '11 at 20:13
And what's the problem with PYTHONPATH under Windows? But I fixed my answer. – wal-o-mat Nov 23 '11 at 20:16
Do I have to set PYTHONPATH in the Windows command line or in the Python shell? – astay13 Nov 23 '11 at 20:17
@wal-o-mat: nice one, upvoting :) – simon Nov 23 '11 at 20:17
1  
@astray13: You also have the option of ignoring the environment variable and instead appending to sys.path inside of your script. – Steven Rumbalski Nov 23 '11 at 20:31
show 3 more comments
feedback
>>> import os
>>> os.system('cd c:\mydir')

In fact, os.system() can execute any command that windows command prompt can execute, not just change dir.

link|improve this answer
feedback

you want

import os
os.getcwd()
os.chdir('..')
link|improve this answer
feedback

Changing the current directory is not the way to deal with finding modules in Python.

Rather, see the docs for The Module Search Path for how Python finds which module to import.

Here is a relevant bit from Standard Modules section:

The variable sys.path is a list of strings that determines the interpreter’s search path for modules. It is initialized to a default path taken from the environment variable PYTHONPATH, or from a built-in default if PYTHONPATH is not set. You can modify it using standard list operations:

>>> import sys
>>> sys.path.append('/ufs/guido/lib/python')

In answer your original question about getting and setting the current directory:

>>> help(os.getcwd)

getcwd(...)
    getcwd() -> path

    Return a string representing the current working directory.

>>> help(os.chdir)

chdir(...)
    chdir(path)

    Change the current working directory to the specified path.
link|improve this answer
feedback

If you import os you can use os.getcwd to get the current working directory, and you can use os.chdir to change your directory

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.