ImportError: cannot import name 'threadpool_limitswith' from 'threadpoolctl' (C:\ProgramData\Anaconda3\lib\site-packages\threadpoolctl.py)
时间: 2023-09-08 10:16:20 浏览: 210
python3 解决cannot import name '_AES'问题
5星 · 资源好评率100%
这个错误通常是由于 threadpoolctl 模块的版本问题导致的。你可以尝试更新 threadpoolctl 模块的版本,方法如下:
1. 在命令行中使用 pip 命令安装最新版本的 threadpoolctl 模块:
```
pip install --upgrade threadpoolctl
```
2. 如果你使用的是 Anaconda,可以尝试使用 conda 命令更新 threadpoolctl 模块的版本:
```
conda update threadpoolctl
```
3. 如果以上方法都无法解决问题,可以尝试卸载 threadpoolctl 模块并重新安装:
```
pip uninstall threadpoolctl
pip install threadpoolctl
```
希望以上方法能够帮助你解决问题。
阅读全文