python基础-28-数据分析python——虚拟环境

本章内容包括:虚拟环境



安装虚拟环境

//打开cmd
//input1
conda create -n superset python=3.7.0 



//output1
Solving environment: done


==> WARNING: A newer version of conda exists. <==
  current version: 4.5.11
  latest version: 4.6.12

Please update conda by running

    $ conda update -n base -c defaults conda



## Package Plan ##

  environment location: F:\Software\Anaconda3.7Soft\envs\superset

  added / updated specs:
    - python=3.7.0


The following packages will be downloaded:

    package                    |            build
    ---------------------------|-----------------
    wheel-0.33.1               |           py37_0          57 KB
    pip-19.0.3                 |           py37_0         1.8 MB
    setuptools-41.0.0          |           py37_0         652 KB
    certifi-2019.3.9           |           py37_0         155 KB
    ------------------------------------------------------------
                                           Total:         2.6 MB

The following NEW packages will be INSTALLED:

    certifi:        2019.3.9-py37_0
    pip:            19.0.3-py37_0
    python:         3.7.0-hea74fb7_0
    setuptools:     41.0.0-py37_0
    vc:             14.1-h0510ff6_4
    vs2015_runtime: 14.15.26706-h3a45250_0
    wheel:          0.33.1-py37_0
    wincertstore:   0.2-py37_0

Proceed ([y]/n)? y


Downloading and Extracting Packages
wheel-0.33.1         | 57 KB     | ############################################################################ | 100%
pip-19.0.3           | 1.8 MB    | ############################################################################ | 100%
setuptools-41.0.0    | 652 KB    | ############################################################################ | 100%
certifi-2019.3.9     | 155 KB    | ############################################################################ | 100%
Preparing transaction: done
Verifying transaction: done
Executing transaction: done
#
# To activate this environment, use:
# > activate superset
#
# To deactivate an active environment, use:
# > deactivate
#
# * for power-users using bash, you must source
#


你可能感兴趣的:(python基础-28-数据分析python——虚拟环境)