python3 安装 pip3 出现问题??distutils.core 不存在

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3 安装 pip3 出现问题??distutils.core 不存在相关的知识,希望对你有一定的参考价值。

python3 安装 pip3 出现问题??distutils.core 不存在安装python3 pip3时需要安装setuptools可是在安装 setuptools时却提示 ModuleNotFoundError: No module named 'distutils.core'

可能是代码中含有中文空格,你检查一下 参考技术A 不会折腾的干脆用anaconda算了,一步到位什么也不要折腾,不然你后面再安装numpy,pandas,matplotlib之类的第三方模块,更折腾人了。 参考技术B 我也遇到类似问题,怎么安装这个distutils

python使用pip安装模块出现ReadTimeoutError: HTTPSConnectionPool的解决方法

今天使用pip安装第三库时,有时会报错:

pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host=‘files.pythonhosted.org‘, port=443): Read timed out.

使用镜像:pip install [模块名] -i https://pypi.douban.com/simple,比如:pip install virtualenv -i https://pypi.douban.com/simple

换成国内源:

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

pip install -i https://pypi.douban.com/simple module_name

第一个安装不行就换第二个试试。

 

其实用anaconda安装就比较快,不会出现这个问题

conda install module_name

 

 

下面是其它网友的补充

一般情况下PIP出现ReadTimeoutError都是因为被GFW给墙了,所以一般遇到这种问题,我们可以选择国内的镜像来解决问题。

在Windows下:

C:UsersAdministrator下新建pip文件夹,在创建pip.ini文件,拷贝下面代码进去,保存。其实就是把python的源换成了清华源,应该能解决问题。

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple

 

延长等待时间完美解决问题

windows下在cmd中,linux在终端下输入如下命令:

pip --default-timeout=100 install -U pip

---

以上是关于python3 安装 pip3 出现问题??distutils.core 不存在的主要内容,如果未能解决你的问题,请参考以下文章

ubuntu 安装python3.7 以及安装pip3 出现Command '('lsb_release', '-a')' returned non-z

[求助]python3.11+mac12.6 pip3安装pygame一直报错

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

在使用ubuntu16.04+python3.5 下使用pip3出现pip3 error - '_NamespacePath' object has no attribute '

如何升级到python3版本并且安装pip3及ipython3

python3.5和pip3安装路径不匹配问题