设为首页 加入收藏

TOP

Python 下载
2023-07-24 10:50:49 】 浏览:402
Tags:python安装 python镜像

python各版本及国内下载地址

python官方各版本下载地址,这也是官网地址,请记住:

https://www.python.org/downloads/ 



国内华为镜像:

https://mirrors.huaweicloud.com/python/ 



注意

3.5.3:国家计算机等级考试二级 Python 科目指定使用版本


这里提供部分版本的连接,都从官方下载。

windows Python   3.11.4

mac Python  3.11.4     

linux Python  3.11.4     




Python 第三方库国内镜像下载地址


由于 Python 服务器在国外,因此使用 pip 安装第三方模块或者库的时候,下载速度特别慢,经常出现如下报错:

  1. $ socket.timeout: The read operation timed out

为提升下载速度,可以使用国内镜像下载,常用的国内镜像有:

豆瓣https://pypi.douban.com/simple

阿里云https://mirrors.aliyun.com/pypi/simple

清华大学https://pypi.tuna.tsinghua.edu.cn/simple

中国科技大学https://pypi.mirrors.ustc.edu.cn/simple

使用方法为在 pip 命令后加 -i URL 方法

设置方法,以清华镜像源为例:

临时使用

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple xxxxxxx

永久设置

pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple


】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇没有了 下一篇没有了

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目