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?
feedback
|
|
You can use the
But if it's about finding other modules: You can set an environment variable called
Then, the interpreter searches also at this place for edit Under Windows:
(taken from http://docs.python.org/using/windows.html) | |||||||||||||
feedback
|
In fact, | ||||
|
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:
In answer your original question about getting and setting the current directory:
| ||||
|
feedback
|
|
If you | |||
|
feedback
|