Skip to content

Latest commit

 

History

History
64 lines (40 loc) · 2.03 KB

File metadata and controls

64 lines (40 loc) · 2.03 KB

如何安装Python

python官方下载:https://www.python.org/downloads/windows/

python国内镜像:https://registry.npmmirror.com/binary.html?path=python/

普通版本

下载python-3.12.3-amd64.exe到本地,然后从命令行安装

rem TargetDir是安装目录,AssociateFiles绑定扩展名,Shortcuts创建快捷方式,Include_doc安装帮助文档
python-3.12.3.exe /quiet TargetDir="python-3.12.3" AssociateFiles=0 Shortcuts=0 Include_doc=0

安装其它pip库

cd python-3.12.3

rem 切换国内源
python -m pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

rem 安装依赖项
python -m pip install -r ..\requirements.txt

便携版本

1 下载python-3.10.11-embed-amd64.zip,并解压到某个文件夹

2 将python-3.10.11-embed-amd64\python310._pth删除,以便python能够根据规自动添加搜索路径

注意:根据python导入module规则,如果pythonxxx._pth(其中xxx是版本号,比如312)文件存在的情况下,Python不会将工作目录或目标执行脚本添加到搜索路径中,因此我们这里需要将python310._pth删除了

python310._pth文件中内容一般如下:

python310.zip
.

# Uncomment to run site.main() automatically

import site

3 在cmd.exe中执行以下命令安装pip以及所需的依赖项

cd python-3.10.11-embed-amd64

rem 安装pip
python.exe ..\get-pip.py

rem 切换国内源
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple

rem 安装依赖项
pip install -r ..\requirements.txt

4 安装tkinter,使用UniExtract对下载python-3.10.11-amd64.exe解压,然后按照下面链接拷贝所需文件

https://blog.csdn.net/nostmabole/article/details/132354099