程序员在成长

windows上使用anaconda快速构建python的各种环

2020-09-20  本文已影响0人  冬天只爱早晨
蟒蛇

Anaconda指的是一个开源的Python发行版本,其包含了conda、Python等180多个科学包及其依赖项。 [1] 因为包含了大量的科学包,Anaconda 的下载文件比较大(约 531 MB),如果只需要某些包,或者需要节省带宽或存储空间,也可以使用Miniconda这个较小的发行版(仅包含conda和 Python)。

简单的说用Anaconda可以构建任何你需要的python环境,类似于docker一样,下面直接介绍如何使用。

官网:https://www.anaconda.com/

image-20200920200351057.png

下载对应版本然后就是下一步的傻瓜式安装,其中有一步,问你需不需要配置到系统环境里,我直接选的是,或者你后面自己在配置也行

把script目录配置到系统PATH下即可C:\ProgramData\Anaconda3\Scripts

安装好就是这个样子

image-20200920200634752.png

我们点击左边的Environments,就能看到已有的环境,后面可以通过界面直接创建环境,也可以通过命令行创建

使用conda -h查看帮助

Options:

positional arguments:
  command
    clean        Remove unused packages and caches.
    config       Modify configuration values in .condarc. This is modeled after the git config command. Writes to the user .condarc file (C:\Users\wangxc\.condarc) by default.
    create       Create a new conda environment from a list of specified packages.
    help         Displays a list of available conda commands and their help strings.
    info         Display information about current conda install.
    init         Initialize conda for shell interaction. [Experimental]
    install      Installs a list of packages into a specified conda environment.
    list         List linked packages in a conda environment.
    package      Low-level conda package utility. (EXPERIMENTAL)
    remove       Remove a list of packages from a specified conda environment.
    uninstall    Alias for conda remove.
    run          Run an executable in a conda environment. [Experimental]
    search       Search for packages and display associated information. The input is a MatchSpec, a query language for conda packages. See examples below.
    update       Updates conda packages to the latest compatible version.
    upgrade      Alias for conda update.

optional arguments:
  -h, --help     Show this help message and exit.
  -V, --version  Show the conda version number and exit.

conda commands available from other packages:
  build
  convert
  debug
  develop
  env
  index
  inspect
  metapackage
  render
  server
  skeleton
  verify

常用的有

基本上就能满足使用了

IDEA可以直接引入conda的环境,如

image-20200920202655407.png

以上就能让你快速创建不同版本的的python环境, 并且不会互相干扰。

又水了一篇。。。。

上一篇下一篇

猜你喜欢

热点阅读