美文网首页
Python3.8安装

Python3.8安装

作者: 杀死BUG | 来源:发表于2020-04-11 17:24 被阅读0次
  • 卸载低版本python
  • 官网下载3.8地址
  • 一路默认安装
  • 添加python3.8路径到系统环境变量
  • 添加pip路径到系统环境变量
  • 设置pip源
    • 临时使用
pip install some-package -i https://mirrors.aliyun.com/pypi/simple/
    • 设为默认
# 升级 pip 到最新的版本后进行配置:
pip install pip -U
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/

相关文章

网友评论

      本文标题:Python3.8安装

      本文链接:https://www.haomeiwen.com/subject/qxyumhtx.html