
You’ll need to add the PIP manager location to your Environment Variables to prevent the error, which shouldn’t be too difficult. However, opening it from specific locations may trigger an error. You may want to run it from anywhere on your computer for various purposes. PIP is now installed, but the work isn’t over yet.

Press the “Customize installation” button.Once you verify your Windows 11 PC doesn’t have PIP, launch your browser and go to the Python for Windows website.The culprit may also be an improper variable path but assume you haven’t installed the manager yet. It might not be installed if the cmd tells you your PIP is unrecognized as an external or internal command, batch file, or operable program. Choose “Run as administrator” on the right side.Click the “Start Menu” icon and type “cmd.”.Now, you can start your first Python script. PATH setx /M PATH "%PATH% C:\Python37 C:\Python37\Scripts" PYTHONPATH setx /M PYTHONPATH "C:\Python37 C:\Python37\DLLs C:\Python37\lib C:\Python37\lib\plat-win C:\Python37\lib\site-packages" The Python and Pip directoies should be listed in PATH just look like the below. Pip will be installed to Scripts directory as the screenshot below.Īdd this directory C:\Python37\Scripts to the Windows environment path. Download get-pip.py Install Pip python get-pip.py The following steps are for installing Pip, the package manager of Python. If you use older version, you might install Pip by using get-pip.py Pip is automatically installed since Python 2.7.9 and Python 3.4. You can ignore this section if your Python version is the lastest. Python 3 Downloadĭownload the installer from offical download page.Īdd this directory C:\Python37 to the Windows environment path.

There is already a official document to guide you how to install Python on Microsoft Windows through an installer, you might prefer this way.
