摘要:
一、环境变量 参考 1、查看环境变量 # 所有变量 set # 指定 set path 2、设置环境变量(指定当前窗口生效) # 指定值 set path=c:\tmp set path=%path%;c:\tmp set abc="C:\Program Files"# 置空set abc= 阅读全文
摘要:
1、检查python版本 python -V pip -V 2、设置pip源 pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/ pip config list # 非https源,须加信任 pip conf 阅读全文