Python pip install 默认路径修改。

Posted 践行渐远的蜗牛

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python pip install 默认路径修改。相关的知识,希望对你有一定的参考价值。

pip动不动就下载数百M的文件。这些文件默认在C:盘,那么为了节省空间需要修改这些路径:

打开cmd命令窗口。输入:

python -m site
C:\\Users\\hewei>python -m site
sys.path = [
    \'C:\\\\Users\\\\xxx\',
    \'D:\\\\Program Files\\\\Python37\\\\python37.zip\',
    \'D:\\\\Program Files\\\\Python37\\\\DLLs\',
    \'D:\\\\Program Files\\\\Python37\\\\lib\',
    \'D:\\\\Program Files\\\\Python37\',
    \'D:\\\\Program Files\\\\Python37\\\\lib\\\\site-packages\',
]
USER_BASE: \'C:\\\\Users\\\\xxx\\\\AppData\\\\Roaming\\\\Python\' (doesn\'t exist)
USER_SITE: \'C:\\\\Users\\\\xxx\\\\AppData\\\\Roaming\\\\Python\\\\Python37\\\\site-packages\' (doesn\'t exist)
ENABLE_USER_SITE: True

可以看到你的python安装目录,和

USER_SITE:自定义Python依赖安装包的基础路径。
USER_BASE:自定义Python脚本
python -m site -help

查看site.py的路径

C:\\Users\\hewei>python -m site -help
D:\\Program Files\\Python37\\lib\\site.py [--user-base] [--user-site]

打开site.py 修改:

 

修改为自己路径。这里要注意尽量写到python目录下

在利用pip谁便安装一个包。去USER_SITE目录下发现包在这里已经成功了

以上是关于Python pip install 默认路径修改。的主要内容,如果未能解决你的问题,请参考以下文章

easy_install和pip安装python库修改默认的源

pip3.7 install报错bad interpreter: No such file or directory

Python | 环境变量 | pip不是内部或外部命令,也不是可运行程序!pip install SyntaxError: invalid syntax!

【Python】 设置 pip 默认下载路径(含国内镜像源)

windows下python的pip install 安装路径在哪

新人小白,安装pip install pyinstaller遇到问题,求大神帮帮忙!