​​python数据分析-Anaconda使用

1.环境(Anacnoda)

1.Anaconda 的使用

  • 1.包管理

    • python --version

      • 查看python的版本信息
    • conda list

      • 查看安装的包
    • conda install xxx

      • 包的安装(pip install xxx)
    • conda remove xxx

      • 卸载包(pip uninstall xxx)
  • 2.环境管理

    • conda create --name xxx python2

      • 创建了python版本为2的环境
    • conda create --name xxx python3

      • 创建了python版本为3的环境
    • conda create --name xxx python3 anaconda

      • 创建了python版本为3的环境,并具有anaconda的所有包
    • conda env list

    • conda info --envs

    • activate xxx

      • **环境
    • conda deactivate

      • 退出环境
    • conda remove --name xxx --all

      • 删除一个已有的环境

3.Jupyter Notebook(注意工作空间切换)


在当前路径栏输入jupyter notebook,就在当前目录启动(骚操作)

相关文章:

  • 2021-12-19
  • 2022-02-07
  • 2021-08-07
  • 2022-12-23
  • 2021-11-08
  • 2021-06-02
  • 2021-06-28
  • 2022-01-14
猜你喜欢
  • 2021-05-20
  • 2022-12-23
  • 2021-11-19
  • 2021-09-04
  • 2021-07-22
  • 2021-07-12
相关资源
相似解决方案