Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6867747
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T03:20:53+00:00 2026-05-27T03:20:53+00:00

I am using Python 3.2 on Windows 7. When I open the Python shell,

  • 0

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

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T03:20:53+00:00Added an answer on May 27, 2026 at 3:20 am

    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)

    edit 2

    … and even better: use virtualenv and virtualenv_wrapper, this will allow you to create a development environment where you can add module paths as you like (add2virtualenv) without polluting your installation or “normal” working environment.

    http://virtualenvwrapper.readthedocs.org/en/latest/command_ref.html

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I write to files using Python (on Windows) and use the Unix
Using Python 2.6.5 on Windows XP, I'm processing a directory of files by calling
In Windows, if I open a command prompt, start python, and inspect something using
When using os.system to open a file, eg: os.system(r'C:/foo.txt') , the current Python process,
I am using Python 3.1 on a Windows 7 machine. Russian is the default
I'm using python 2.5 in windows on a macbook pro with IDLE. How do
I want to write text files with DOS/Windows line endings '\r\n' using python running
When using urllib2 (and maybe urllib) on windows python seems to magically pick up
I am using the urllib2 module in Python 2.6.4, running in Windows XP, to
I am using PIL 1.1.6, Python 2.5 on the Windows platform. In my program,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.