美文网首页Linux系统管理
linux安装pip、Miniconda

linux安装pip、Miniconda

作者: 咖啡大象不含咖啡 | 来源:发表于2018-03-04 17:06 被阅读2987次
  • pip下载
 wget "https://pypi.python.org/packages/source/p/pip/pip-1.5.4.tar.gz#md5=834b2904f92d46aaa333267fb1c922bb" --no-check-certificate
  • pip安装
# tar -xzvf pip-1.5.4.tar.gz
# cd pip-1.5.4
# python setup.py install
  • Miniconda下载
wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh
  • 安装
sh Miniconda2-latest-Linux-x86_64.sh
输入yes,回车,输入yes,重新登录。

看到以下内容表示安装成功:

For this change to become active, you have to open a new terminal.

Thank you for installing Miniconda2!

  • 试用
conda install numpy

相关文章

网友评论

    本文标题:linux安装pip、Miniconda

    本文链接:https://www.haomeiwen.com/subject/wthqfftx.html