1、打开anaconda Prompt 输入conda list 就会显示已经安装好的库

anaconda 安装第三方库

2、如果这些库中没有自己需要的库就可以用

anaconda search -t conda tensorflow 查找需要的库这样就会显示你要安装的有哪些版本

anaconda 安装第三方库

3、在使用 anaconda show 文件名 就会告诉如何安装对应的库

anaconda 安装第三方库

4、最后复制上面的install 就可以安装了。

更新:

pip install 库名
pip install 库名 --upgrade
# 或者
conda install 库名
conda update 库名
 
# 更新所有库
conda update --all
 
# 更新 conda 自身
conda update conda
 
# 更新 anaconda 自身
conda update anaconda

--------------------- 
from:https://blog.csdn.net/xiexu911/article/details/80282440

5、安装过程报错:

“UnsatisfiableError: The following specifications were found to be in conflict”

解决方法:执行conda update conda 更新一下conda,再运行就好了

 

相关文章:

  • 2021-10-14
  • 2021-06-26
  • 2021-11-07
  • 2021-09-01
  • 2021-08-09
  • 2022-12-23
猜你喜欢
  • 2021-03-31
  • 2022-01-21
  • 2021-03-16
  • 2022-12-23
  • 2021-09-25
  • 2022-01-20
相关资源
相似解决方案