如何更改python中pip的默认安装路径
具体方法:
(推荐教程:Python入门教程)
1、查看 site.py 文件的位置(一般在python安装目录的Lib下),可使用指令查询:
python -m site -help
2、打开site.py文件,更改 USER_BASE 和USER_SITE 的路径即可。其中 USER_BASE 和USER_SITE其实就是用户自定义的启用Python脚本和依赖安装包的基础路径。
# for distutils.commands.install # These values are initialized by the getuserbase() and getusersitepackages() # functions, through the main() function when Python starts. USER_SITE = "%python安装路径%Libsite-packages" #用户自定义的依赖安装包的路径 USER_BASE = "%python安装路径%Scripts" #用户自定义的启用Python脚本的路径
3、最后通过指令 python -m site 查看是否修改成功
来源:PY学习网:原文地址:https://www.py.cn/article.html