- 【问题】ModuleNotFoundError: No module named ‘numba.decorators’
- 【解决方案】
pip install numba==0.48
- 【原因】没有安装numba 或者安装 numba 版本过高,导致依赖 numba 的模块无法引用。
- 【问题】Microsoft Visual C++ 14.0 is required
- 【解决方案-选项1.】
- 下载 Visual C++ Build Tools 2015,此处为Visual C++ Build Tools 2015,即Visual C++ Build Tools 2015,即Microsoft Visual C++ 14.0下载地址。
3. 安装 visualcppbuildtools_full.exe。
4. 安装完毕,可以选择重启计算机。
- 【解决方案-选项2.】
- 下载 Python 模块预编译包,此处为Python 模块预安装地址。
- 【解决方案-选项3.】
- 下载并安装 Visual Studio 2015。
- 【原因】略。
- 【问题】… is not a supported wheel on this platform.
- 【原因】:
-
- *** 作系统版本不支持:当前的(32位 或者 64位) *** 作系统不支持(64位或者32位)安装包
-
- Python 环境不支持:当前的 Python (2.x 或者 3.0)环境不支持当前(cp2x或者cp3x)安装包
- 【解决方案】
- 针对 *** 作系统版本不支持,
# 64位 *** 作系统
pip install package_name-win_amd64.whl
# 32位 *** 作系统
pip install package_name-win32.whl
- 针对 Python 环境不支持,
# Python 3.x,例子是 cp36 对应 Python 3.6
pip install scipy-0.15.1-cp36-none-win32.whl
# Python 2.x,此处为 cp27 对应 Python 2.7
pip install scipy-0.15.1-cp27-none-win32.whl
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)