1.下载Anaconda3,我选择了python3的64位版本

2.windows安装,选择加入了系统目录

3.进入命令行进行版本安装

// 安装一个指定版本
conda create --name python36 python=3.6
// 激活版本
activate python36
// 关闭版本
deactivate python36
// 安装一个2.7版本的
conda create --name python27 python=2.7

// 查看当前版本列表
conda info -e

 

4.安装jupyter做为web开发环境

conda install jupyter

 

相关文章:

  • 2022-12-23
  • 2021-08-07
  • 2021-12-30
  • 2021-07-02
  • 2022-12-23
  • 2021-07-02
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-24
  • 2022-01-22
  • 2021-06-10
  • 2021-08-25
  • 2021-11-20
  • 2022-12-23
  • 2021-12-08
相关资源
相似解决方案