How to Install Python Packages on Windows 7

Method 1 of 1:

Windows MSI installer

  1. Download the Windows MSI installer (either x86 or x64).
  2. Run the program.
  3. Take note of the path during the installation. For example, C:Python33 if you want to use the command line.
  4. If you do not care to use the command line, you can now use the IDLE integrated development environment for Python and consider yourself done.
  5. If you want to use the command line, click on Control Panel.
  6. Click on System and Security.
  7. Click on System.
  8. Click on the Advanced system settings link.
  9. Click on the Environmental Variables button.
  10. Under System Variables, look for the Variable named Path.
  11. Select Path and click on the Edit button.
  12. At the end of the Variable value, add the value you took note of in step 3 (i.e. C:Python33) preceded by a semicolon (;) which is used to separate the values, so you would add - ;C:Python33.
  13. Open your command line and type 'python' - if successful, you should see three greater than symbols at the command prompt (>>>).
  14. To exit the Python interpreter, type 'exit()'.
  15. That's it!
5 ★ | 3 Vote

May be interested

  • How to Install PythonHow to Install Python
    python is an interpreted, object-oriented, high-level programming language that is a great place for beginners to start learning how to program. python comes installed on macs and with linux, but you'll need to install it yourself if...
  • How to Install the MySQL Database Server on Your Windows PCHow to Install the MySQL Database Server on Your Windows PC
    this wikihow teaches you how to install the mysql server program on a windows 10 computer. in order to install mysql on a windows computer, you must first have python 2.7 (not python 3+) installed. open the python download page. go to...
  • How to set up Python to program on WSLHow to set up Python to program on WSL
    get started with cross-platform python programming by setting up python on the windows subsystem for linux. here's how to set up python for wsl programming.
  • More than 100 Python exercises have solutions (sample code)More than 100 Python exercises have solutions (sample code)
    more than 100 python code examples are shared by guy zhiwehu on github, however, the solution of this series is written on the old python version. following tipsmake.com will be vietnameseized and edited to suit python 3.x to help you learn and practice python.
  • How to register for 3G Viettel packagesHow to register for 3G Viettel packages
    viettel provides users with many 3g packages such as package packages, packages with capacity or register packages with more attractive incentives.
  • How to Write a Basic Python ProgramHow to Write a Basic Python Program
    python is a high-level programming language. the language utilizes a straightforward syntax which can make it easy for new users to get started. ==== install the dependencies ====
  • Bookmark 5 best Python programming learning websitesBookmark 5 best Python programming learning websites
    if you are a developer or you are studying and want to stick with this industry, learn python to add a highlight in your journey.
  • How to Install Software in Debian LinuxHow to Install Software in Debian Linux
    this wikihow teaches you how to use tools built into debian linux to install software packages. if you're using the desktop version of debian, you can use synaptic to install application packages with a point-and-click graphical interface....
  • For in Python loopFor in Python loop
    in this article, we will learn more about for for loop in python as well as its variations, how to use for to repeat a string of elements in python such as list, string or other iterative objects.
  • Manage files and folders in PythonManage files and folders in Python
    python also provides a variety of methods to handle various directory-related operations. in this article, we will learn about managing files and directories in python, namely creating folders, renaming folders, listing folders and working with them.