admin 管理员组

文章数量: 887016

 首先去python的官网,找到对应的windows的python的安装链接,要注意不同python的版本支持的windows系列不一样,有些新的版本不再支持xp或win7。

下面的链接是python3.8.7的链接;

Python Release Python 3.8.7 | PythonThe official home of the Python Programming Languagehttps://www.python/downloads/release/python-387/此下载页面中,注意选择file中合适的安装文件,比如windows installer 64bit,此文件是exe的安装包;

VersionOperating SystemDescriptionMD5 SumFile SizeGPG
Gzipped source tarballhttps://www.python/ftp/python/3.8.7/Python-3.8.7.tgzSource releasee1f40f4fc9ccc781fcbf8d4e86c4666024468684SIG
XZ compressed source tarballSource release60fe018fffc7f33818e6c340d29e2db918261096SIG
macOS 64-bit Intel installermacOSfor macOS 10.9 and later3f609e58e06685f27ff3306bbcae656529801336SIG
Windows embeddable package (32-bit)Windowsefbe9f5f3a6f166c7c9b7dbebbe2cb247328313SIG
Windows embeddable package (64-bit)Windows61db96411fc00aea8a06e7e25cab2df78190247SIG
Windows help fileWindows8d59fd3d833e969af23b212537a27c158534307SIG
Windows installer (32-bit)Windowsed99dc2ec9057a60ca3591ccce29e9e427064968SIG
Windows installer (64-bit)WindowsRecommended325ec7acd0e319963b505aea877a23a428151648SIG

 安装python3.8的时候,会自动安装pip包,也可以自己自定义安装的内容;

如果安装的是2.4或2.7的python版本,将不会自带pip 包;此时需要手动在pip的官网下载安装包;

pip · PyPIThe PyPA recommended tool for installing Python packages.https://pypi/project/pip/#files

注意选择下载文件tar.gz(比如pip-22.1.2.tar.gz );下载完的压缩包,可以使用7zip软件解压出来,然后把解压目录里所有文件拷贝到python.exe所在的目录,然后在命令行下执行:

python setup.py install,将会开始安装pip包。setup文件来自于刚才的解压缩包。

安装完pip后,就可以用pip install 命令来自动下载和安装别的包。

比如 pip install pyinstaller==3.5  可用来安装pyinstaller包,版本是3.5;

安装好的包位于python安装目录下的子目录Lib\site-packages\

 

本文标签: Windows python pip