Miniconda3安装

Overview

使用 Anaconda 步骤如下:

  1. 安装 miniconda 在自己电脑上
  2. 为自己的工程创建一个新的 conda 环境
  3. 每次想操作工程时只要激活对应的 conda 环境

Install

下载 与自己电脑系统匹配的最新版本 miniconda.

Linux Mac Windows
64-bit 64-bit (bash installer) 64-bit (bash installer) 64-bit (exe installer)
32-bit 32-bit (bash installer) 32-bit (exe installer)

安装 miniconda 的详细操作:

  • Linux: http://conda.pydata.org/docs/install/quick.html#linux-miniconda-install
  • Mac: http://conda.pydata.org/docs/install/quick.html#os-x-miniconda-install
  • Windows: http://conda.pydata.org/docs/install/quick.html#windows-miniconda-install

额外备注

很多人使用 Anconda 是为了方便使用 jupyter notebook 工具,在这里,有需要注意的是,有时候会碰到 "jupyter notebook kernel starting error" 的问题,这个多半是之前电脑安装过python导致的干扰。是的话,需要手动添加正确的python的路径,如果还没有解决的话,你可以在终端上输入“python -m ipykernel install --user”,运行后再运行 jupyter notebook

你可能感兴趣的:(Miniconda3安装)