How to Install Python Packages on Windows 7
Method 1 of 1:
Windows MSI installer
- Download the Windows MSI installer (either x86 or x64).
- Run the program.
- Take note of the path during the installation. For example, C:Python33 if you want to use the command line.
- 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.
- If you want to use the command line, click on Control Panel.
- Click on System and Security.
- Click on System.
- Click on the Advanced system settings link.
- Click on the Environmental Variables button.
- Under System Variables, look for the Variable named Path.
- Select Path and click on the Edit button.
- 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.
- Open your command line and type 'python' - if successful, you should see three greater than symbols at the command prompt (>>>).
- To exit the Python interpreter, type 'exit()'.
- That's it!
5 ★ | 3 Vote
You should read it
- Command line parameter in C
- Manage the Event Log with the command line
- The Nox App Player command line parameters support
- Forget the GUI, the Command Line is returning
- 5 reasons why people love the Linux command line
- 5 best command line emulation software for Windows 10
- How to use the Linux command line on Android with Termux
- 12 things Linux is easier to do in the command line than graphical software
May be interested
- How to Install Pythonpython 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 PCthis 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 WSLget 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 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 packagesviettel 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 Programpython 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 websitesif 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 Linuxthis 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 loopin 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 Pythonpython 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.