一、问题描述
当我们使用Python3.4及其以上版本运行Python项目时,提示【ModuleNotFoundError: No module named 'imp'】,但是我们使用【pip install imp】命令安装imp时却提示如下错误信息:
ERROR: Could not find a version that satisfies the requirement imp (from versions: none)
ERROR: No matching distribution found for imp
二、问题分析
1、从 Python 3.4 之后就弃用【imp】,改用【importlib】替代了。
2、关于使用pip安装模块如果出现超时(timeout),则可以切换为国内的源。
三、解决方法
3.1、方法一:将python代码中含有imp的内容替换为importlib
继续保持使用当前的Python3.4及其更高的Python版本,然后找到项目中包含imp的报错内容替换为【importlib】
#import imp
import importlib
3.2、方法二:安装Python3.4以下的Python
将我们现有的Python3.4及其之上的版本卸载掉,然后重新下载安装Python3.4以下的Python版本
# 查看Python当前版本命令
python --version
python -V
Download Python | Python.orgThe official home of the Python Programming Languagehttps://www.python.org/downloads/ 官网下载 Python 3.3.6 | Python.orgThe official home of the Python Programming Languagehttps://www.python.org/downloads/release/python-336/
四、关于pip安装模块超时的解决方法
# 1-更新pip的版本
python -m pip install --upgrade pip
# 2-临时使用国内镜像源安装模块(示例:pip install importlib -i https://mirrors.aliyun.com/pypi/simple/)
pip install 需安装的模块名称 -i 国内的pip源地址
镜像源名称 | 地址 |
---|---|
阿里云 | https://mirrors.aliyun.com/pypi/simple/ |
腾讯云 | https://mirrors.cloud.tencent.com/pypi/simple/ |
华为云 | https://repo.huaweicloud.com/repository/pypi/simple |
清华大学 | https://pypi.tuna.tsinghua.edu.cn/simple |
中国科学技术大学 | https://pypi.mirrors.ustc.edu.cn/simple/ |
pip的官网用户手册说明书https://pip.pypa.io/en/latest/user_guide/