当前位置:网站首页>After pip installation, there is still ImportError No module named XX problem solved

After pip installation, there is still ImportError No module named XX problem solved

2022-08-11 11:58:00 The way of the code

After installing the module with pip, an error still occurs:

ImportError: No module named 'XX'

It needs to be re-installed with conda.

Take TensorFlow as an example, the original installation method:

pip install --upgrade tensorflow-gpu==1.11.0

You need to use conda to install the corresponding version again:

conda install --upgrade tensorflow-gpu==1.11.0


Learn more programming knowledge, please pay attention to my public account:

The way to code

原网站

版权声明
本文为[The way of the code]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/223/202208111145399152.html