Pyton - 包管理Anaconda 和 PIP

Posted yousoluck

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Pyton - 包管理Anaconda 和 PIP相关的知识,希望对你有一定的参考价值。

Anaconda

  1. Common Commands
    1.  condainfo & condaupdate conda

    2. condainstall/update scikit-learn

    3. condacreate --name/-n py35 python=3.5

    4. activate/deactivate py35/base

    5. condaenv list

    6. condalist/search

    7. condalist -e > requirements.txt

    8. condainstall --yes --file requirements.txt

PYPI

  1. Common Commands
    1. pip install scikit-learn
    2. pip uninstall scikit-learn
    3. pip --version/-V
    4. pip list
    5. pip install scikit-learn-1.0-py2.py3-none-any.whl
    6. pip show --files scikit-learn
    7. pip install --upgrade/-U scikit-learn
    8. .python -m pip install scikit-learn
    9. python -m pip install --upgrade pip

Mixed PIP & Conda

  1. Conda first, then PIP
  2.  conda isolate the pip,be careful with the sudopip
  3. Rebuild the conda Env if needed

  4. Save the conda andpip requirement files

Refer to

  1. Tensor

以上是关于Pyton - 包管理Anaconda 和 PIP的主要内容,如果未能解决你的问题,请参考以下文章

在Anaconda虚拟环境中pip安装的包无法使用

Anaconda入门

Python包管理 pip教程 | 解决用pip更新pip失败 #yyds干货盘点#

如何优雅的安装Python的pandas

pip软件包安装 + Anaconda软件库安装 教程

在Mac系统下python如何安装第三方函数库?