window修改 python pip默认安装位置

  • Post author:
  • Post category:python


假设 python安装目录为D:/SDK/python,修改D:\SDK\python\Lib\site.py文件

找到USER_SITE和USER_BASE修改其值(原值是None),即是要保存的位置

# for distutils.commands.install
# These values are initialized by the getuserbase() and getusersitepackages()
# functions, through the main() function when Python starts.
USER_SITE = "D:/SDK/python/Lib/site-packages"
USER_BASE = "D:/SDK/python/Scripts"

保存后,使用 python -m site 命令查看:

在这里插入图片描述

立即生效



版权声明:本文为wuchongyong原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。