SoFunction
Updated on 2024-10-30

Python pip installation and usage tutorials

The installation of pip, as well as the method of installing packages using pip, is documented and shared below:

- - When installing python, I checked the box to download pip, but for some reason it didn't download. Then I got lazy and thought about which package I needed to download separately, then! Each package will be a little problem, resulting in my beginner three days do not want to go back to learn python, as a result of visible pip is still very very convenient and important, after a lot of tests (online tutorials many have 3 meters deep pit), finally downloaded pip, record, hope that white people like me will not fall into the pit ~!

Python installation tutorial at

1, the first step to create a new text file, named get-pip, the suffix name change to py

2, the second step to openweb address Copy all the text into our newly created file.

3, open cmd, where your file is placed to find it, mine is in the f disk in the python36 folder

Then type python and hit enter to start the installation.

4, you can enter pip in the cmd to try to see if the installation is successful!

If this interface appears, it means that the installation was successful, while the iron is hot, then try to use pip to install other packages to try!

5. pandas installation

(1) In the cmd window type pip install pandas

Installation was successful, here I entered in the god lxmhhy blog to see the recommended doudoune moncler outlet online download pandas, it is said to be faster than the source installation

6. wordcloud installation

The reason for this is that I got an error with pip install wordcloud, so I had to do it the other way around.

If you are also experiencing an error that can't be resolved you can try the method I've described below

(1) Openweb address

(2) Since my python is 3.6.4 I downloaded 64 bit wordcloud 1.3.3 cp36 cp36m win_amd64.whl

You should download it according to your python version, otherwise it will report an error while executing, pro experiment ^_^

(3) in the cmd into the directory you download the file, mine is placed in the d disk under the downloads file

(4) Execute pip install wordcloud 1.3.3 cp36 cp36m win_amd64.whl

The installation was successful!

For more articles on python installation tutorials seeTutorial on installing python versions.

For more great book lists, clickEssential python programming book list

Get the dry goods:Video tutorials for learning python with zero beginner's knowledge

This is the whole content of this article.