平台:win64+anaconda

1. 如何查看已安装的库

打开 Anaconda Command Prompt ,在命令提示符窗口中输入以下命令:

pip list
# 或者
conda list

其中,pip list 只能查看库,而 conda list 则可以查看库以及库的版本

2. 如何安装或更新库

以安装 更新 scipy 为例

pip install scipy
pip install scipy --upgrade
# 或者
conda install scipy
conda update scipy

# 更新所有库
conda update --all

# 更新 conda 自身
conda update conda

# 更新 anaconda 自身
conda update anaconda

相关文章:

  • 2021-04-26
  • 2021-10-24
  • 2022-12-23
  • 2022-02-10
  • 2021-11-14
  • 2022-12-23
  • 2021-07-23
  • 2022-12-23
猜你喜欢
  • 2021-04-03
  • 2021-06-10
  • 2021-05-31
  • 2022-02-09
  • 2021-09-28
  • 2021-05-19
  • 2021-05-15
相关资源
相似解决方案