I'm trying to Install PIP for python 3.6 and I've looked over YouTube for tutorials but all of them seem to be out of date and none of them have seemed to work. Any information would be helpful so I can carry on with my project.
相关问题
- how to define constructor for Python's new Nam
- streaming md5sum of contents of a large remote tar
- How to get the background from multiple images by
- Evil ctypes hack in python
- Correctly parse PDF paragraphs with Python
pip
is bundled with Python > 3.4On Unix-like systems use:
On a Windows system use:
Download python 3.6
It is possible that pip does not get installed by default. One potential fix is to open cmd and type:
and then
actually i had nothing in my scripts folder idk why but these steps worked for me.
If pip doesn't come with your installation of python 3.6, this may work:
then you can python -m install
pip is already installed with your version of python. In order to install a package with pip the command on Windows is:
For python3 it should be pip3
on ubuntu
pip is included in Python installation. If you can't call pip.exe try calling python -m pip [args] from cmd