Ubuntu开发者专栏

2020最新ubuntu20.04安装Anacoda3和搭建深度

2020-05-16  本文已影响0人  KangSmit的算法那些事儿

先設置默認編輯環境:

sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 100
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 150
图片.png

安装之前需要的依赖命令:

sudo apt-get install libgl1-mesa-glx libegl1-mesa libxrandr2 libxrandr2 libxss1 libxcursor1 libxcomposite1 libasound2 libxi6 libxtst6

下载

官方下载地址:https://www.continuum.io/downloads
所有安装包地址:https://repo.continuum.io/archive/
这里使用 Python 3.8 版本的 “Anaconda3-2020.02-Linux-x86_64.sh”,如果下载速度慢或下载失败,可以去我的百度云下载
Anaconda3-2020.02-Linux-x86_64.sh与其他虚拟机linux安装包

链接:https://pan.baidu.com/s/1Q9ttAkVg9uh1lFCMoEsJcQ
提取码:18yg

安装较为简单,这里参考官方文档:https://docs.continuum.io/anaconda/install/linux.html
https://cn.ubuntu.com/

将下载完的文件放在主目录下(如本文第一张图片),如上图在文件目录下执行终端输入:
bash Anaconda3-2020.02-Linux-x86_64.sh

图片.png

执行之后一直ENTER---》YES
完成以后,重启终端,设置环境变量,输入

sudo gedit ~/.bashrc  #打开环境变量文件修改界面
export PATH="/home/你的文件夹名/anaconda3/bin:$PATH"
source ~/.bashrc

其他详细安装教程

安装tensorflow

常用命令如下,

# 创建一个名为tensorflow的虚拟环境
conda create -n tensorflow

# 创建指定Python版本的虚拟环境
conda create -n tensorflow python=3.6

# 完整复制一个环境
conda create -n test -clone tensorflow

# 进入虚拟环境
source activate tensorflow

# 退出虚拟环境
source deactivate

#查看当前存在的环境
conda info --envs

#删除环境
conda remove -n tensorflow --all

   

进入创建的名为tensorflow的环境中,安装所需要的库

conda install tensorflow
conda install tensorflow-gpu
conda install jupyter #jupyter notebook是个ipython调试器
conda install spyder  #类似matlab的pythonIDE


查看安装库所需要的依赖,如安装tensorflow-gpu(一般会自动安装依赖)

conda info tensorflow-gpu=1.2.1

   

安装pytorch

https://pytorch.org/

conda install pytorch torchvision cudatoolkit=10.2 -c pytorch

https://pytorch.org/docs/stable/index.htmlhttps://pytorch.org/docs/stable/index.html

图片.png 图片.png

附录anacoda3执行过程,可看到安装的模块和其他依赖

zhoukang@ubuntu:~$ bash Anaconda3-2020.02-Linux-x86_64.sh

Welcome to Anaconda3 2020.02

In order to continue the installation process, please review the license
agreement.
Please, press ENTER to continue
>>> 
===================================
End User License Agreement - Anaconda Individual Edition
===================================

Copyright 2015-2020, Anaconda, Inc.

All rights reserved under the 3-clause BSD License:

This End User License Agreement (the "Agreement") is a legal agreement between y
ou and Anaconda, Inc. ("Anaconda") and governs your use of Anaconda Individual E
dition (which was formerly known as Anaconda Distribution).

Subject to the terms of this Agreement, Anaconda hereby grants you a non-exclusi
ve, non-transferable license to:

  * Install and use the Anaconda Individual Edition (which was formerly known as
 Anaconda Distribution),
  * Modify and create derivative works of sample source code delivered in Anacon
da Individual Edition; and
  * Redistribute code files in source (if provided to you by Anaconda as source)
 and binary forms, with or without modification subject to the requirements set 
forth below.

Anaconda may, at its option, make available patches, workarounds or other update
s to Anaconda Individual Edition. Unless the updates are provided with their sep
arate governing terms, they are deemed part of Anaconda Individual Edition licen
sed to you as provided in this Agreement.  This Agreement does not entitle you t
o any support for Anaconda Individual Edition.

Anaconda reserves all rights not expressly granted to you in this Agreement.

Redistribution and use in source and binary forms, with or without modification,
 are permitted provided that the following conditions are met:

  * Redistributions of source code must retain the above copyright notice, this 
list of conditions and the following disclaimer.
  * Redistributions in binary form must reproduce the above copyright notice, th
is list of conditions and the following disclaimer in the documentation and/or o
ther materials provided with the distribution.
  * Neither the name of Anaconda nor the names of its contributors may be used t
o endorse or promote products derived from this software without specific prior 
written permission.

You acknowledge that, as between you and Anaconda, Anaconda owns all right, titl
e, and interest, including all intellectual property rights, in and to Anaconda 
Individual Edition and, with respect to third-party products distributed with or
 in Anaconda Individual Edition, the applicable third-party licensors own all ri
ght, title and interest, including all intellectual property rights, in and to s
uch products.  If you send or transmit any communications or materials to Anacon
da suggesting or recommending changes to the software or documentation, includin
g without limitation, new features or functionality relating thereto, or any com
ments, questions, suggestions or the like ("Feedback"), Anaconda is free to use 
such Feedback. You hereby assign to Anaconda all right, title, and interest in, 
and Anaconda is free to use, without any attribution or compensation to any part
y, any ideas, know-how, concepts, techniques or other intellectual property righ
ts contained in the Feedback, for any purpose whatsoever, although Anaconda is n
ot required to use any Feedback.

THIS SOFTWARE IS PROVIDED BY ANACONDA AND ITS CONTRIBUTORS "AS IS" AND ANY EXPRE
SS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EV
ENT SHALL ANACONDA BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEM
PLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF S
UBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUP
TION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT O
F THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

TO THE MAXIMUM EXTENT PERMITTED BY LAW, ANACONDA AND ITS AFFILIATES SHALL NOT BE
 LIABLE FOR ANY SPECIAL, INCIDENTAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR ANY L
OST PROFITS, LOSS OF USE, LOSS OF DATA OR LOSS OF GOODWILL, OR THE COSTS OF PROC
URING SUBSTITUTE PRODUCTS, ARISING OUT OF OR IN CONNECTION WITH THIS AGREEMENT O
R THE USE OR PERFORMANCE OF ANACONDA INDIVIDUAL EDITION, WHETHER SUCH LIABILITY 
ARISES FROM ANY CLAIM BASED UPON BREACH OF CONTRACT, BREACH OF WARRANTY, TORT (I
NCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER CAUSE OF ACTION OR THEORY O
F LIABILITY. IN NO EVENT WILL THE TOTAL CUMULATIVE LIABILITY OF ANACONDA AND ITS
 AFFILIATES UNDER OR ARISING OUT OF THIS AGREEMENT EXCEED US0.00.

If you want to terminate this Agreement, you may do so by discontinuing use of A
naconda Individual Edition.  Anaconda may, at any time, terminate this Agreement
 and the license granted hereunder if you fail to comply with any term of this A
greement.   Upon any termination of this Agreement, you agree to promptly discon
tinue use of the Anaconda Individual Edition and destroy all copies in your poss
ession or control. Upon any termination of this Agreement all provisions survive
 except for the licenses granted to you.

This Agreement is governed by and construed in accordance with the internal laws
 of the State of Texas without giving effect to any choice or conflict of law pr
ovision or rule that would require or permit the application of the laws of any 
jurisdiction other than those of the State of Texas. Any legal suit, action, or 
proceeding arising out of or related to this Agreement or the licenses granted h
ereunder by you must be instituted exclusively in the federal courts of the Unit
ed States or the courts of the State of Texas in each case located in Travis Cou
nty, Texas, and you irrevocably submit to the jurisdiction of such courts in any
 such suit, action, or proceeding.

Notice of Third Party Software Licenses
=======================================

Anaconda Individual Edition contains software packages or tools licensed on an o
pen source basis from third parties and binary packages of these third party too
ls. These third party software packages or tools are provided on an "as is" basi
s and are subject to their respective license agreements as well as this Agreeme
nt. These licenses may be accessed from within the Anaconda Individual Edition s
oftware or at http://docs.anaconda.com/anaconda/pkg-docs. Information regarding 
which license is applicable is available from within many of the third party sof
tware packages and tools and at https://repo.anaconda.com/pkgs/main/ and  https:
//repo.anaconda.com/pkgs/r/. Anaconda reserves the right, in its sole discretion
, to change which third party tools are provided in Anaconda Individual Edition.

Intel Math Kernel Library

Anaconda Individual Edition contains re-distributable, run-time, shared-library 
files from the Intel Math Kernel Library ("MKL binaries").

Copyright 2018 Intel Corporation.  License available at https://software.intel.c
om/en-us/license/intel-simplified-software-license (the "MKL License").
You may use and redistribute the MKL binaries, without modification, provided th
e following conditions are met:

  * Redistributions must reproduce the above copyright notice and the following 
terms of use in the MKL binaries and in the documentation and/or other materials
 provided with the distribution.
  * Neither the name of Intel nor the names of its suppliers may be used to endo
rse or promote products derived from the MKL binaries without specific prior wri
tten permission.
  * No reverse engineering, decompilation, or disassembly of the MKL binaries is
 permitted.

You are specifically authorized to use and redistribute the MKL binaries with yo
ur installation of Anaconda Individual Edition subject to the terms set forth in
 the MKL License. You are also authorized to redistribute the MKL binaries with 
Anaconda Individual Edition or in the Anaconda package that contains the MKL bin
aries. If needed, instructions for removing the MKL binaries after installation 
of Anaconda Individual Edition are available at https://docs.anaconda.com.

cuDNN Software

Anaconda Individual Edition also contains cuDNN software binaries ("cuDNN binari
es") from NVIDIA Corporation. You are specifically authorized to use the cuDNN b
inaries with your installation of Anaconda Individual Edition subject to your co
mpliance with the license agreement located at https://docs.nvidia.com/deeplearn
ing/sdk/cudnn-sla/index.html. You are also authorized to redistribute the cuDNN 
binaries with an Anaconda Individual Edition package that contains the cuDNN bin
aries. You can add or remove the cuDNN binaries utilizing the  install and unins
tall features in Anaconda Individual Edition.

cuDNN binaries contain source code provided by NVIDIA Corporation.

Export; Cryptography Notice
===================

You must comply with all domestic and international export laws and regulations 
that apply to the software, which include restrictions on destinations, end user
s, and end use.  Anaconda Individual Edition includes cryptographic software. Th
e country in which you currently reside may have restrictions on the import, pos
session, use, and/or re-export to another country, of encryption software. BEFOR
E using any encryption software, please check your country's laws, regulations a
nd policies concerning the import, possession, or use, and re-export of encrypti
on software, to see if this is permitted. See the Wassenaar Arrangement http://w
ww.wassenaar.org/ for more information.

Anaconda has self-classified this software as Export Commodity Control Number (E
CCN) 5D992.c, which includes mass market information security software using or 
performing cryptographic functions with asymmetric algorithms. No license is req
uired for export of this software to non-embargoed countries. The Intel Math Ker
nel Library contained in Anaconda Individual Edition is classified by Intel as E
CCN 5D992.c with no license required for export to non-embargoed countries.

The following packages are included in this distribution that relate to cryptogr
aphy:

openssl
    The OpenSSL Project is a collaborative effort to develop a robust, commercia
l-grade, full-featured, and Open Source toolkit implementing the Transport Layer
 Security (TLS) and Secure Sockets Layer (SSL) protocols as well as a full-stren
gth general purpose cryptography library.

pycrypto
    A collection of both secure hash functions (such as SHA256 and RIPEMD160), a
nd various encryption algorithms (AES, DES, RSA, ElGamal, etc.).

pyopenssl
    A thin Python wrapper around (a subset of) the OpenSSL library.

kerberos (krb5, non-Windows platforms)
    A network authentication protocol designed to provide strong authentication 
for client/server applications by using secret-key cryptography.

cryptography
    A Python library which exposes cryptographic recipes and primitives.

pycryptodome
    A fork of PyCrypto. It is a self-contained Python package of low-level crypt
ographic primitives.

pycryptodomex
    A stand-alone version of pycryptodome.

libsodium
    A software library for encryption, decryption, signatures, password hashing 
and more.

pynacl
    A Python binding to the Networking and Cryptography library, a crypto librar
y with the stated goal of improving usability, security and speed.

Last updated February 25, 2020


Do you accept the license terms? [yes|no]
[no] >>> 
Please answer 'yes' or 'no':'
>>> 
Please answer 'yes' or 'no':'
>>> 
Please answer 'yes' or 'no':'
>>> 
Please answer 'yes' or 'no':'
>>> 
Please answer 'yes' or 'no':'
>>> 
Please answer 'yes' or 'no':'
>>> 
Please answer 'yes' or 'no':'
>>> 
Please answer 'yes' or 'no':'
>>> 
Please answer 'yes' or 'no':'
>>> 
Please answer 'yes' or 'no':'
>>> 
Please answer 'yes' or 'no':'
>>> 
Please answer 'yes' or 'no':'
>>> 
Please answer 'yes' or 'no':'
>>> 
Please answer 'yes' or 'no':'
>>> 
Please answer 'yes' or 'no':'
>>> 
Please answer 'yes' or 'no':'
>>> 
Please answer 'yes' or 'no':'
>>> yes

Anaconda3 will now be installed into this location:
/home/zhoukang/anaconda3

  - Press ENTER to confirm the location
  - Press CTRL-C to abort the installation
  - Or specify a different location below

[/home/zhoukang/anaconda3] >>> 
PREFIX=/home/zhoukang/anaconda3
Unpacking payload ...
Collecting package metadata (current_repodata.json): done                       
Solving environment: done

## Package Plan ##

  environment location: /home/zhoukang/anaconda3

  added / updated specs:
    - _ipyw_jlab_nb_ext_conf==0.1.0=py37_0
    - _libgcc_mutex==0.1=main
    - alabaster==0.7.12=py37_0
    - anaconda-client==1.7.2=py37_0
    - anaconda-navigator==1.9.12=py37_0
    - anaconda-project==0.8.4=py_0
    - anaconda==2020.02=py37_0
    - argh==0.26.2=py37_0
    - asn1crypto==1.3.0=py37_0
    - astroid==2.3.3=py37_0
    - astropy==4.0=py37h7b6447c_0
    - atomicwrites==1.3.0=py37_1
    - attrs==19.3.0=py_0
    - autopep8==1.4.4=py_0
    - babel==2.8.0=py_0
    - backcall==0.1.0=py37_0
    - backports.functools_lru_cache==1.6.1=py_0
    - backports.shutil_get_terminal_size==1.0.0=py37_2
    - backports.tempfile==1.0=py_1
    - backports.weakref==1.0.post1=py_1
    - backports==1.0=py_2
    - beautifulsoup4==4.8.2=py37_0
    - bitarray==1.2.1=py37h7b6447c_0
    - bkcharts==0.2=py37_0
    - blas==1.0=mkl
    - bleach==3.1.0=py37_0
    - blosc==1.16.3=hd408876_0
    - bokeh==1.4.0=py37_0
    - boto==2.49.0=py37_0
    - bottleneck==1.3.2=py37heb32a55_0
    - bzip2==1.0.8=h7b6447c_0
    - ca-certificates==2020.1.1=0
    - cairo==1.14.12=h8948797_3
    - certifi==2019.11.28=py37_0
    - cffi==1.14.0=py37h2e261b9_0
    - chardet==3.0.4=py37_1003
    - click==7.0=py37_0
    - cloudpickle==1.3.0=py_0
    - clyent==1.2.2=py37_1
    - colorama==0.4.3=py_0
    - conda-build==3.18.11=py37_0
    - conda-env==2.6.0=1
    - conda-package-handling==1.6.0=py37h7b6447c_0
    - conda-verify==3.4.2=py_1
    - conda==4.8.2=py37_0
    - contextlib2==0.6.0.post1=py_0
    - cryptography==2.8=py37h1ba5d50_0
    - curl==7.68.0=hbc83047_0
    - cycler==0.10.0=py37_0
    - cython==0.29.15=py37he6710b0_0
    - cytoolz==0.10.1=py37h7b6447c_0
    - dask-core==2.11.0=py_0
    - dask==2.11.0=py_0
    - dbus==1.13.12=h746ee38_0
    - decorator==4.4.1=py_0
    - defusedxml==0.6.0=py_0
    - diff-match-patch==20181111=py_0
    - distributed==2.11.0=py37_0
    - docutils==0.16=py37_0
    - entrypoints==0.3=py37_0
    - et_xmlfile==1.0.1=py37_0
    - expat==2.2.6=he6710b0_0
    - fastcache==1.1.0=py37h7b6447c_0
    - filelock==3.0.12=py_0
    - flake8==3.7.9=py37_0
    - flask==1.1.1=py_0
    - fontconfig==2.13.0=h9420a91_0
    - freetype==2.9.1=h8a8886c_1
    - fribidi==1.0.5=h7b6447c_0
    - fsspec==0.6.2=py_0
    - future==0.18.2=py37_0
    - get_terminal_size==1.0.0=haa9412d_0
    - gevent==1.4.0=py37h7b6447c_0
    - glib==2.63.1=h5a9c865_0
    - glob2==0.7=py_0
    - gmp==6.1.2=h6c8ec71_1
    - gmpy2==2.0.8=py37h10f8cd9_2
    - graphite2==1.3.13=h23475e2_0
    - greenlet==0.4.15=py37h7b6447c_0
    - gst-plugins-base==1.14.0=hbbd80ab_1
    - gstreamer==1.14.0=hb453b48_1
    - h5py==2.10.0=py37h7918eee_0
    - harfbuzz==1.8.8=hffaf4a1_0
    - hdf5==1.10.4=hb1b8bf9_0
    - heapdict==1.0.1=py_0
    - html5lib==1.0.1=py37_0
    - hypothesis==5.5.4=py_0
    - icu==58.2=h9c2bf20_1
    - idna==2.8=py37_0
    - imageio==2.6.1=py37_0
    - imagesize==1.2.0=py_0
    - importlib_metadata==1.5.0=py37_0
    - intel-openmp==2020.0=166
    - intervaltree==3.0.2=py_0
    - ipykernel==5.1.4=py37h39e3cac_0
    - ipython==7.12.0=py37h5ca1d4c_0
    - ipython_genutils==0.2.0=py37_0
    - ipywidgets==7.5.1=py_0
    - isort==4.3.21=py37_0
    - itsdangerous==1.1.0=py37_0
    - jbig==2.1=hdba287a_0
    - jdcal==1.4.1=py_0
    - jedi==0.14.1=py37_0
    - jeepney==0.4.2=py_0
    - jinja2==2.11.1=py_0
    - joblib==0.14.1=py_0
    - jpeg==9b=h024ee3a_2
    - json5==0.9.1=py_0
    - jsonschema==3.2.0=py37_0
    - jupyter==1.0.0=py37_7
    - jupyter_client==5.3.4=py37_0
    - jupyter_console==6.1.0=py_0
    - jupyter_core==4.6.1=py37_0
    - jupyterlab==1.2.6=pyhf63ae98_0
    - jupyterlab_server==1.0.6=py_0
    - keyring==21.1.0=py37_0
    - kiwisolver==1.1.0=py37he6710b0_0
    - krb5==1.17.1=h173b8e3_0
    - lazy-object-proxy==1.4.3=py37h7b6447c_0
    - ld_impl_linux-64==2.33.1=h53a641e_7
    - libarchive==3.3.3=h5d8350f_5
    - libcurl==7.68.0=h20c2e04_0
    - libedit==3.1.20181209=hc058e9b_0
    - libffi==3.2.1=hd88cf55_4
    - libgcc-ng==9.1.0=hdf63c60_0
    - libgfortran-ng==7.3.0=hdf63c60_0
    - liblief==0.9.0=h7725739_2
    - libpng==1.6.37=hbc83047_0
    - libsodium==1.0.16=h1bed415_0
    - libspatialindex==1.9.3=he6710b0_0
    - libssh2==1.8.2=h1ba5d50_0
    - libstdcxx-ng==9.1.0=hdf63c60_0
    - libtiff==4.1.0=h2733197_0
    - libtool==2.4.6=h7b6447c_5
    - libuuid==1.0.3=h1bed415_2
    - libxcb==1.13=h1bed415_1
    - libxml2==2.9.9=hea5a465_1
    - libxslt==1.1.33=h7d1a2b0_0
    - llvmlite==0.31.0=py37hd408876_0
    - locket==0.2.0=py37_1
    - lxml==4.5.0=py37hefd8a0e_0
    - lz4-c==1.8.1.2=h14c3975_0
    - lzo==2.10=h49e0be7_2
    - markupsafe==1.1.1=py37h7b6447c_0
    - matplotlib-base==3.1.3=py37hef1b27d_0
    - matplotlib==3.1.3=py37_0
    - mccabe==0.6.1=py37_1
    - mistune==0.8.4=py37h7b6447c_0
    - mkl-service==2.3.0=py37he904b0f_0
    - mkl==2020.0=166
    - mkl_fft==1.0.15=py37ha843d7b_0
    - mkl_random==1.1.0=py37hd6b4f25_0
    - mock==4.0.1=py_0
    - more-itertools==8.2.0=py_0
    - mpc==1.1.0=h10f8cd9_1
    - mpfr==4.0.1=hdf1c602_3
    - mpmath==1.1.0=py37_0
    - msgpack-python==0.6.1=py37hfd86e86_1
    - multipledispatch==0.6.0=py37_0
    - navigator-updater==0.2.1=py37_0
    - nbconvert==5.6.1=py37_0
    - nbformat==5.0.4=py_0
    - ncurses==6.2=he6710b0_0
    - networkx==2.4=py_0
    - nltk==3.4.5=py37_0
    - nose==1.3.7=py37_2
    - notebook==6.0.3=py37_0
    - numba==0.48.0=py37h0573a6f_0
    - numexpr==2.7.1=py37h423224d_0
    - numpy-base==1.18.1=py37hde5b4d6_1
    - numpy==1.18.1=py37h4f9e942_0
    - numpydoc==0.9.2=py_0
    - olefile==0.46=py37_0
    - openpyxl==3.0.3=py_0
    - openssl==1.1.1d=h7b6447c_4
    - packaging==20.1=py_0
    - pandas==1.0.1=py37h0573a6f_0
    - pandoc==2.2.3.2=0
    - pandocfilters==1.4.2=py37_1
    - pango==1.42.4=h049681c_0
    - parso==0.5.2=py_0
    - partd==1.1.0=py_0
    - patchelf==0.10=he6710b0_0
    - path.py==12.4.0=0
    - path==13.1.0=py37_0
    - pathlib2==2.3.5=py37_0
    - pathtools==0.1.2=py_1
    - patsy==0.5.1=py37_0
    - pcre==8.43=he6710b0_0
    - pep8==1.7.1=py37_0
    - pexpect==4.8.0=py37_0
    - pickleshare==0.7.5=py37_0
    - pillow==7.0.0=py37hb39fc2d_0
    - pip==20.0.2=py37_1
    - pixman==0.38.0=h7b6447c_0
    - pkginfo==1.5.0.1=py37_0
    - pluggy==0.13.1=py37_0
    - ply==3.11=py37_0
    - prometheus_client==0.7.1=py_0
    - prompt_toolkit==3.0.3=py_0
    - psutil==5.6.7=py37h7b6447c_0
    - ptyprocess==0.6.0=py37_0
    - py-lief==0.9.0=py37h7725739_2
    - py==1.8.1=py_0
    - pycodestyle==2.5.0=py37_0
    - pycosat==0.6.3=py37h7b6447c_0
    - pycparser==2.19=py37_0
    - pycrypto==2.6.1=py37h14c3975_9
    - pycurl==7.43.0.5=py37h1ba5d50_0
    - pydocstyle==4.0.1=py_0
    - pyflakes==2.1.1=py37_0
    - pygments==2.5.2=py_0
    - pylint==2.4.4=py37_0
    - pyodbc==4.0.30=py37he6710b0_0
    - pyopenssl==19.1.0=py37_0
    - pyparsing==2.4.6=py_0
    - pyqt==5.9.2=py37h05f1152_2
    - pyrsistent==0.15.7=py37h7b6447c_0
    - pysocks==1.7.1=py37_0
    - pytables==3.6.1=py37h71ec239_0
    - pytest-arraydiff==0.3=py37h39e3cac_0
    - pytest-astropy-header==0.1.2=py_0
    - pytest-astropy==0.8.0=py_0
    - pytest-doctestplus==0.5.0=py_0
    - pytest-openfiles==0.4.0=py_0
    - pytest-remotedata==0.3.2=py37_0
    - pytest==5.3.5=py37_0
    - python-dateutil==2.8.1=py_0
    - python-jsonrpc-server==0.3.4=py_0
    - python-language-server==0.31.7=py37_0
    - python-libarchive-c==2.8=py37_13
    - python==3.7.6=h0371630_2
    - pytz==2019.3=py_0
    - pywavelets==1.1.1=py37h7b6447c_0
    - pyxdg==0.26=py_0
    - pyyaml==5.3=py37h7b6447c_0
    - pyzmq==18.1.1=py37he6710b0_0
    - qdarkstyle==2.8=py_0
    - qt==5.9.7=h5867ecd_1
    - qtawesome==0.6.1=py_0
    - qtconsole==4.6.0=py_1
    - qtpy==1.9.0=py_0
    - readline==7.0=h7b6447c_5
    - requests==2.22.0=py37_1
    - ripgrep==11.0.2=he32d670_0
    - rope==0.16.0=py_0
    - rtree==0.9.3=py37_0
    - ruamel_yaml==0.15.87=py37h7b6447c_0
    - scikit-image==0.16.2=py37h0573a6f_0
    - scikit-learn==0.22.1=py37hd81dba3_0
    - scipy==1.4.1=py37h0b6359f_0
    - seaborn==0.10.0=py_0
    - secretstorage==3.1.2=py37_0
    - send2trash==1.5.0=py37_0
    - setuptools==45.2.0=py37_0
    - simplegeneric==0.8.1=py37_2
    - singledispatch==3.4.0.3=py37_0
    - sip==4.19.8=py37hf484d3e_0
    - six==1.14.0=py37_0
    - snappy==1.1.7=hbae5bb6_3
    - snowballstemmer==2.0.0=py_0
    - sortedcollections==1.1.2=py37_0
    - sortedcontainers==2.1.0=py37_0
    - soupsieve==1.9.5=py37_0
    - sphinx==2.4.0=py_0
    - sphinxcontrib-applehelp==1.0.1=py_0
    - sphinxcontrib-devhelp==1.0.1=py_0
    - sphinxcontrib-htmlhelp==1.0.2=py_0
    - sphinxcontrib-jsmath==1.0.1=py_0
    - sphinxcontrib-qthelp==1.0.2=py_0
    - sphinxcontrib-serializinghtml==1.1.3=py_0
    - sphinxcontrib-websupport==1.2.0=py_0
    - sphinxcontrib==1.0=py37_1
    - spyder-kernels==1.8.1=py37_0
    - spyder==4.0.1=py37_0
    - sqlalchemy==1.3.13=py37h7b6447c_0
    - sqlite==3.31.1=h7b6447c_0
    - statsmodels==0.11.0=py37h7b6447c_0
    - sympy==1.5.1=py37_0
    - tbb==2020.0=hfd86e86_0
    - tblib==1.6.0=py_0
    - terminado==0.8.3=py37_0
    - testpath==0.4.4=py_0
    - tk==8.6.8=hbc83047_0
    - toolz==0.10.0=py_0
    - tornado==6.0.3=py37h7b6447c_3
    - tqdm==4.42.1=py_0
    - traitlets==4.3.3=py37_0
    - ujson==1.35=py37h14c3975_0
    - unicodecsv==0.14.1=py37_0
    - unixodbc==2.3.7=h14c3975_0
    - urllib3==1.25.8=py37_0
    - watchdog==0.10.2=py37_0
    - wcwidth==0.1.8=py_0
    - webencodings==0.5.1=py37_1
    - werkzeug==1.0.0=py_0
    - wheel==0.34.2=py37_0
    - widgetsnbextension==3.5.1=py37_0
    - wrapt==1.11.2=py37h7b6447c_0
    - wurlitzer==2.0.0=py37_0
    - xlrd==1.2.0=py37_0
    - xlsxwriter==1.2.7=py_0
    - xlwt==1.3.0=py37_0
    - xmltodict==0.12.0=py_0
    - xz==5.2.4=h14c3975_4
    - yaml==0.1.7=had09818_2
    - yapf==0.28.0=py_0
    - zeromq==4.3.1=he6710b0_3
    - zict==1.0.0=py_0
    - zipp==2.2.0=py_0
    - zlib==1.2.11=h7b6447c_3
    - zstd==1.3.7=h0b5b093_0


The following NEW packages will be INSTALLED:

  _ipyw_jlab_nb_ext~ pkgs/main/linux-64::_ipyw_jlab_nb_ext_conf-0.1.0-py37_0
  _libgcc_mutex      pkgs/main/linux-64::_libgcc_mutex-0.1-main
  alabaster          pkgs/main/linux-64::alabaster-0.7.12-py37_0
  anaconda           pkgs/main/linux-64::anaconda-2020.02-py37_0
  anaconda-client    pkgs/main/linux-64::anaconda-client-1.7.2-py37_0
  anaconda-navigator pkgs/main/linux-64::anaconda-navigator-1.9.12-py37_0
  anaconda-project   pkgs/main/noarch::anaconda-project-0.8.4-py_0
  argh               pkgs/main/linux-64::argh-0.26.2-py37_0
  asn1crypto         pkgs/main/linux-64::asn1crypto-1.3.0-py37_0
  astroid            pkgs/main/linux-64::astroid-2.3.3-py37_0
  astropy            pkgs/main/linux-64::astropy-4.0-py37h7b6447c_0
  atomicwrites       pkgs/main/linux-64::atomicwrites-1.3.0-py37_1
  attrs              pkgs/main/noarch::attrs-19.3.0-py_0
  autopep8           pkgs/main/noarch::autopep8-1.4.4-py_0
  babel              pkgs/main/noarch::babel-2.8.0-py_0
  backcall           pkgs/main/linux-64::backcall-0.1.0-py37_0
  backports          pkgs/main/noarch::backports-1.0-py_2
  backports.functoo~ pkgs/main/noarch::backports.functools_lru_cache-1.6.1-py_0
  backports.shutil_~ pkgs/main/linux-64::backports.shutil_get_terminal_size-1.0.0-py37_2
  backports.tempfile pkgs/main/noarch::backports.tempfile-1.0-py_1
  backports.weakref  pkgs/main/noarch::backports.weakref-1.0.post1-py_1
  beautifulsoup4     pkgs/main/linux-64::beautifulsoup4-4.8.2-py37_0
  bitarray           pkgs/main/linux-64::bitarray-1.2.1-py37h7b6447c_0
  bkcharts           pkgs/main/linux-64::bkcharts-0.2-py37_0
  blas               pkgs/main/linux-64::blas-1.0-mkl
  bleach             pkgs/main/linux-64::bleach-3.1.0-py37_0
  blosc              pkgs/main/linux-64::blosc-1.16.3-hd408876_0
  bokeh              pkgs/main/linux-64::bokeh-1.4.0-py37_0
  boto               pkgs/main/linux-64::boto-2.49.0-py37_0
  bottleneck         pkgs/main/linux-64::bottleneck-1.3.2-py37heb32a55_0
  bzip2              pkgs/main/linux-64::bzip2-1.0.8-h7b6447c_0
  ca-certificates    pkgs/main/linux-64::ca-certificates-2020.1.1-0
  cairo              pkgs/main/linux-64::cairo-1.14.12-h8948797_3
  certifi            pkgs/main/linux-64::certifi-2019.11.28-py37_0
  cffi               pkgs/main/linux-64::cffi-1.14.0-py37h2e261b9_0
  chardet            pkgs/main/linux-64::chardet-3.0.4-py37_1003
  click              pkgs/main/linux-64::click-7.0-py37_0
  cloudpickle        pkgs/main/noarch::cloudpickle-1.3.0-py_0
  clyent             pkgs/main/linux-64::clyent-1.2.2-py37_1
  colorama           pkgs/main/noarch::colorama-0.4.3-py_0
  conda              pkgs/main/linux-64::conda-4.8.2-py37_0
  conda-build        pkgs/main/linux-64::conda-build-3.18.11-py37_0
  conda-env          pkgs/main/linux-64::conda-env-2.6.0-1
  conda-package-han~ pkgs/main/linux-64::conda-package-handling-1.6.0-py37h7b6447c_0
  conda-verify       pkgs/main/noarch::conda-verify-3.4.2-py_1
  contextlib2        pkgs/main/noarch::contextlib2-0.6.0.post1-py_0
  cryptography       pkgs/main/linux-64::cryptography-2.8-py37h1ba5d50_0
  curl               pkgs/main/linux-64::curl-7.68.0-hbc83047_0
  cycler             pkgs/main/linux-64::cycler-0.10.0-py37_0
  cython             pkgs/main/linux-64::cython-0.29.15-py37he6710b0_0
  cytoolz            pkgs/main/linux-64::cytoolz-0.10.1-py37h7b6447c_0
  dask               pkgs/main/noarch::dask-2.11.0-py_0
  dask-core          pkgs/main/noarch::dask-core-2.11.0-py_0
  dbus               pkgs/main/linux-64::dbus-1.13.12-h746ee38_0
  decorator          pkgs/main/noarch::decorator-4.4.1-py_0
  defusedxml         pkgs/main/noarch::defusedxml-0.6.0-py_0
  diff-match-patch   pkgs/main/noarch::diff-match-patch-20181111-py_0
  distributed        pkgs/main/linux-64::distributed-2.11.0-py37_0
  docutils           pkgs/main/linux-64::docutils-0.16-py37_0
  entrypoints        pkgs/main/linux-64::entrypoints-0.3-py37_0
  et_xmlfile         pkgs/main/linux-64::et_xmlfile-1.0.1-py37_0
  expat              pkgs/main/linux-64::expat-2.2.6-he6710b0_0
  fastcache          pkgs/main/linux-64::fastcache-1.1.0-py37h7b6447c_0
  filelock           pkgs/main/noarch::filelock-3.0.12-py_0
  flake8             pkgs/main/linux-64::flake8-3.7.9-py37_0
  flask              pkgs/main/noarch::flask-1.1.1-py_0
  fontconfig         pkgs/main/linux-64::fontconfig-2.13.0-h9420a91_0
  freetype           pkgs/main/linux-64::freetype-2.9.1-h8a8886c_1
  fribidi            pkgs/main/linux-64::fribidi-1.0.5-h7b6447c_0
  fsspec             pkgs/main/noarch::fsspec-0.6.2-py_0
  future             pkgs/main/linux-64::future-0.18.2-py37_0
  get_terminal_size  pkgs/main/linux-64::get_terminal_size-1.0.0-haa9412d_0
  gevent             pkgs/main/linux-64::gevent-1.4.0-py37h7b6447c_0
  glib               pkgs/main/linux-64::glib-2.63.1-h5a9c865_0
  glob2              pkgs/main/noarch::glob2-0.7-py_0
  gmp                pkgs/main/linux-64::gmp-6.1.2-h6c8ec71_1
  gmpy2              pkgs/main/linux-64::gmpy2-2.0.8-py37h10f8cd9_2
  graphite2          pkgs/main/linux-64::graphite2-1.3.13-h23475e2_0
  greenlet           pkgs/main/linux-64::greenlet-0.4.15-py37h7b6447c_0
  gst-plugins-base   pkgs/main/linux-64::gst-plugins-base-1.14.0-hbbd80ab_1
  gstreamer          pkgs/main/linux-64::gstreamer-1.14.0-hb453b48_1
  h5py               pkgs/main/linux-64::h5py-2.10.0-py37h7918eee_0
  harfbuzz           pkgs/main/linux-64::harfbuzz-1.8.8-hffaf4a1_0
  hdf5               pkgs/main/linux-64::hdf5-1.10.4-hb1b8bf9_0
  heapdict           pkgs/main/noarch::heapdict-1.0.1-py_0
  html5lib           pkgs/main/linux-64::html5lib-1.0.1-py37_0
  hypothesis         pkgs/main/noarch::hypothesis-5.5.4-py_0
  icu                pkgs/main/linux-64::icu-58.2-h9c2bf20_1
  idna               pkgs/main/linux-64::idna-2.8-py37_0
  imageio            pkgs/main/linux-64::imageio-2.6.1-py37_0
  imagesize          pkgs/main/noarch::imagesize-1.2.0-py_0
  importlib_metadata pkgs/main/linux-64::importlib_metadata-1.5.0-py37_0
  intel-openmp       pkgs/main/linux-64::intel-openmp-2020.0-166
  intervaltree       pkgs/main/noarch::intervaltree-3.0.2-py_0
  ipykernel          pkgs/main/linux-64::ipykernel-5.1.4-py37h39e3cac_0
  ipython            pkgs/main/linux-64::ipython-7.12.0-py37h5ca1d4c_0
  ipython_genutils   pkgs/main/linux-64::ipython_genutils-0.2.0-py37_0
  ipywidgets         pkgs/main/noarch::ipywidgets-7.5.1-py_0
  isort              pkgs/main/linux-64::isort-4.3.21-py37_0
  itsdangerous       pkgs/main/linux-64::itsdangerous-1.1.0-py37_0
  jbig               pkgs/main/linux-64::jbig-2.1-hdba287a_0
  jdcal              pkgs/main/noarch::jdcal-1.4.1-py_0
  jedi               pkgs/main/linux-64::jedi-0.14.1-py37_0
  jeepney            pkgs/main/noarch::jeepney-0.4.2-py_0
  jinja2             pkgs/main/noarch::jinja2-2.11.1-py_0
  joblib             pkgs/main/noarch::joblib-0.14.1-py_0
  jpeg               pkgs/main/linux-64::jpeg-9b-h024ee3a_2
  json5              pkgs/main/noarch::json5-0.9.1-py_0
  jsonschema         pkgs/main/linux-64::jsonschema-3.2.0-py37_0
  jupyter            pkgs/main/linux-64::jupyter-1.0.0-py37_7
  jupyter_client     pkgs/main/linux-64::jupyter_client-5.3.4-py37_0
  jupyter_console    pkgs/main/noarch::jupyter_console-6.1.0-py_0
  jupyter_core       pkgs/main/linux-64::jupyter_core-4.6.1-py37_0
  jupyterlab         pkgs/main/noarch::jupyterlab-1.2.6-pyhf63ae98_0
  jupyterlab_server  pkgs/main/noarch::jupyterlab_server-1.0.6-py_0
  keyring            pkgs/main/linux-64::keyring-21.1.0-py37_0
  kiwisolver         pkgs/main/linux-64::kiwisolver-1.1.0-py37he6710b0_0
  krb5               pkgs/main/linux-64::krb5-1.17.1-h173b8e3_0
  lazy-object-proxy  pkgs/main/linux-64::lazy-object-proxy-1.4.3-py37h7b6447c_0
  ld_impl_linux-64   pkgs/main/linux-64::ld_impl_linux-64-2.33.1-h53a641e_7
  libarchive         pkgs/main/linux-64::libarchive-3.3.3-h5d8350f_5
  libcurl            pkgs/main/linux-64::libcurl-7.68.0-h20c2e04_0
  libedit            pkgs/main/linux-64::libedit-3.1.20181209-hc058e9b_0
  libffi             pkgs/main/linux-64::libffi-3.2.1-hd88cf55_4
  libgcc-ng          pkgs/main/linux-64::libgcc-ng-9.1.0-hdf63c60_0
  libgfortran-ng     pkgs/main/linux-64::libgfortran-ng-7.3.0-hdf63c60_0
  liblief            pkgs/main/linux-64::liblief-0.9.0-h7725739_2
  libpng             pkgs/main/linux-64::libpng-1.6.37-hbc83047_0
  libsodium          pkgs/main/linux-64::libsodium-1.0.16-h1bed415_0
  libspatialindex    pkgs/main/linux-64::libspatialindex-1.9.3-he6710b0_0
  libssh2            pkgs/main/linux-64::libssh2-1.8.2-h1ba5d50_0
  libstdcxx-ng       pkgs/main/linux-64::libstdcxx-ng-9.1.0-hdf63c60_0
  libtiff            pkgs/main/linux-64::libtiff-4.1.0-h2733197_0
  libtool            pkgs/main/linux-64::libtool-2.4.6-h7b6447c_5
  libuuid            pkgs/main/linux-64::libuuid-1.0.3-h1bed415_2
  libxcb             pkgs/main/linux-64::libxcb-1.13-h1bed415_1
  libxml2            pkgs/main/linux-64::libxml2-2.9.9-hea5a465_1
  libxslt            pkgs/main/linux-64::libxslt-1.1.33-h7d1a2b0_0
  llvmlite           pkgs/main/linux-64::llvmlite-0.31.0-py37hd408876_0
  locket             pkgs/main/linux-64::locket-0.2.0-py37_1
  lxml               pkgs/main/linux-64::lxml-4.5.0-py37hefd8a0e_0
  lz4-c              pkgs/main/linux-64::lz4-c-1.8.1.2-h14c3975_0
  lzo                pkgs/main/linux-64::lzo-2.10-h49e0be7_2
  markupsafe         pkgs/main/linux-64::markupsafe-1.1.1-py37h7b6447c_0
  matplotlib         pkgs/main/linux-64::matplotlib-3.1.3-py37_0
  matplotlib-base    pkgs/main/linux-64::matplotlib-base-3.1.3-py37hef1b27d_0
  mccabe             pkgs/main/linux-64::mccabe-0.6.1-py37_1
  mistune            pkgs/main/linux-64::mistune-0.8.4-py37h7b6447c_0
  mkl                pkgs/main/linux-64::mkl-2020.0-166
  mkl-service        pkgs/main/linux-64::mkl-service-2.3.0-py37he904b0f_0
  mkl_fft            pkgs/main/linux-64::mkl_fft-1.0.15-py37ha843d7b_0
  mkl_random         pkgs/main/linux-64::mkl_random-1.1.0-py37hd6b4f25_0
  mock               pkgs/main/noarch::mock-4.0.1-py_0
  more-itertools     pkgs/main/noarch::more-itertools-8.2.0-py_0
  mpc                pkgs/main/linux-64::mpc-1.1.0-h10f8cd9_1
  mpfr               pkgs/main/linux-64::mpfr-4.0.1-hdf1c602_3
  mpmath             pkgs/main/linux-64::mpmath-1.1.0-py37_0
  msgpack-python     pkgs/main/linux-64::msgpack-python-0.6.1-py37hfd86e86_1
  multipledispatch   pkgs/main/linux-64::multipledispatch-0.6.0-py37_0
  navigator-updater  pkgs/main/linux-64::navigator-updater-0.2.1-py37_0
  nbconvert          pkgs/main/linux-64::nbconvert-5.6.1-py37_0
  nbformat           pkgs/main/noarch::nbformat-5.0.4-py_0
  ncurses            pkgs/main/linux-64::ncurses-6.2-he6710b0_0
  networkx           pkgs/main/noarch::networkx-2.4-py_0
  nltk               pkgs/main/linux-64::nltk-3.4.5-py37_0
  nose               pkgs/main/linux-64::nose-1.3.7-py37_2
  notebook           pkgs/main/linux-64::notebook-6.0.3-py37_0
  numba              pkgs/main/linux-64::numba-0.48.0-py37h0573a6f_0
  numexpr            pkgs/main/linux-64::numexpr-2.7.1-py37h423224d_0
  numpy              pkgs/main/linux-64::numpy-1.18.1-py37h4f9e942_0
  numpy-base         pkgs/main/linux-64::numpy-base-1.18.1-py37hde5b4d6_1
  numpydoc           pkgs/main/noarch::numpydoc-0.9.2-py_0
  olefile            pkgs/main/linux-64::olefile-0.46-py37_0
  openpyxl           pkgs/main/noarch::openpyxl-3.0.3-py_0
  openssl            pkgs/main/linux-64::openssl-1.1.1d-h7b6447c_4
  packaging          pkgs/main/noarch::packaging-20.1-py_0
  pandas             pkgs/main/linux-64::pandas-1.0.1-py37h0573a6f_0
  pandoc             pkgs/main/linux-64::pandoc-2.2.3.2-0
  pandocfilters      pkgs/main/linux-64::pandocfilters-1.4.2-py37_1
  pango              pkgs/main/linux-64::pango-1.42.4-h049681c_0
  parso              pkgs/main/noarch::parso-0.5.2-py_0
  partd              pkgs/main/noarch::partd-1.1.0-py_0
  patchelf           pkgs/main/linux-64::patchelf-0.10-he6710b0_0
  path               pkgs/main/linux-64::path-13.1.0-py37_0
  path.py            pkgs/main/noarch::path.py-12.4.0-0
  pathlib2           pkgs/main/linux-64::pathlib2-2.3.5-py37_0
  pathtools          pkgs/main/noarch::pathtools-0.1.2-py_1
  patsy              pkgs/main/linux-64::patsy-0.5.1-py37_0
  pcre               pkgs/main/linux-64::pcre-8.43-he6710b0_0
  pep8               pkgs/main/linux-64::pep8-1.7.1-py37_0
  pexpect            pkgs/main/linux-64::pexpect-4.8.0-py37_0
  pickleshare        pkgs/main/linux-64::pickleshare-0.7.5-py37_0
  pillow             pkgs/main/linux-64::pillow-7.0.0-py37hb39fc2d_0
  pip                pkgs/main/linux-64::pip-20.0.2-py37_1
  pixman             pkgs/main/linux-64::pixman-0.38.0-h7b6447c_0
  pkginfo            pkgs/main/linux-64::pkginfo-1.5.0.1-py37_0
  pluggy             pkgs/main/linux-64::pluggy-0.13.1-py37_0
  ply                pkgs/main/linux-64::ply-3.11-py37_0
  prometheus_client  pkgs/main/noarch::prometheus_client-0.7.1-py_0
  prompt_toolkit     pkgs/main/noarch::prompt_toolkit-3.0.3-py_0
  psutil             pkgs/main/linux-64::psutil-5.6.7-py37h7b6447c_0
  ptyprocess         pkgs/main/linux-64::ptyprocess-0.6.0-py37_0
  py                 pkgs/main/noarch::py-1.8.1-py_0
  py-lief            pkgs/main/linux-64::py-lief-0.9.0-py37h7725739_2
  pycodestyle        pkgs/main/linux-64::pycodestyle-2.5.0-py37_0
  pycosat            pkgs/main/linux-64::pycosat-0.6.3-py37h7b6447c_0
  pycparser          pkgs/main/linux-64::pycparser-2.19-py37_0
  pycrypto           pkgs/main/linux-64::pycrypto-2.6.1-py37h14c3975_9
  pycurl             pkgs/main/linux-64::pycurl-7.43.0.5-py37h1ba5d50_0
  pydocstyle         pkgs/main/noarch::pydocstyle-4.0.1-py_0
  pyflakes           pkgs/main/linux-64::pyflakes-2.1.1-py37_0
  pygments           pkgs/main/noarch::pygments-2.5.2-py_0
  pylint             pkgs/main/linux-64::pylint-2.4.4-py37_0
  pyodbc             pkgs/main/linux-64::pyodbc-4.0.30-py37he6710b0_0
  pyopenssl          pkgs/main/linux-64::pyopenssl-19.1.0-py37_0
  pyparsing          pkgs/main/noarch::pyparsing-2.4.6-py_0
  pyqt               pkgs/main/linux-64::pyqt-5.9.2-py37h05f1152_2
  pyrsistent         pkgs/main/linux-64::pyrsistent-0.15.7-py37h7b6447c_0
  pysocks            pkgs/main/linux-64::pysocks-1.7.1-py37_0
  pytables           pkgs/main/linux-64::pytables-3.6.1-py37h71ec239_0
  pytest             pkgs/main/linux-64::pytest-5.3.5-py37_0
  pytest-arraydiff   pkgs/main/linux-64::pytest-arraydiff-0.3-py37h39e3cac_0
  pytest-astropy     pkgs/main/noarch::pytest-astropy-0.8.0-py_0
  pytest-astropy-he~ pkgs/main/noarch::pytest-astropy-header-0.1.2-py_0
  pytest-doctestplus pkgs/main/noarch::pytest-doctestplus-0.5.0-py_0
  pytest-openfiles   pkgs/main/noarch::pytest-openfiles-0.4.0-py_0
  pytest-remotedata  pkgs/main/linux-64::pytest-remotedata-0.3.2-py37_0
  python             pkgs/main/linux-64::python-3.7.6-h0371630_2
  python-dateutil    pkgs/main/noarch::python-dateutil-2.8.1-py_0
  python-jsonrpc-se~ pkgs/main/noarch::python-jsonrpc-server-0.3.4-py_0
  python-language-s~ pkgs/main/linux-64::python-language-server-0.31.7-py37_0
  python-libarchive~ pkgs/main/linux-64::python-libarchive-c-2.8-py37_13
  pytz               pkgs/main/noarch::pytz-2019.3-py_0
  pywavelets         pkgs/main/linux-64::pywavelets-1.1.1-py37h7b6447c_0
  pyxdg              pkgs/main/noarch::pyxdg-0.26-py_0
  pyyaml             pkgs/main/linux-64::pyyaml-5.3-py37h7b6447c_0
  pyzmq              pkgs/main/linux-64::pyzmq-18.1.1-py37he6710b0_0
  qdarkstyle         pkgs/main/noarch::qdarkstyle-2.8-py_0
  qt                 pkgs/main/linux-64::qt-5.9.7-h5867ecd_1
  qtawesome          pkgs/main/noarch::qtawesome-0.6.1-py_0
  qtconsole          pkgs/main/noarch::qtconsole-4.6.0-py_1
  qtpy               pkgs/main/noarch::qtpy-1.9.0-py_0
  readline           pkgs/main/linux-64::readline-7.0-h7b6447c_5
  requests           pkgs/main/linux-64::requests-2.22.0-py37_1
  ripgrep            pkgs/main/linux-64::ripgrep-11.0.2-he32d670_0
  rope               pkgs/main/noarch::rope-0.16.0-py_0
  rtree              pkgs/main/linux-64::rtree-0.9.3-py37_0
  ruamel_yaml        pkgs/main/linux-64::ruamel_yaml-0.15.87-py37h7b6447c_0
  scikit-image       pkgs/main/linux-64::scikit-image-0.16.2-py37h0573a6f_0
  scikit-learn       pkgs/main/linux-64::scikit-learn-0.22.1-py37hd81dba3_0
  scipy              pkgs/main/linux-64::scipy-1.4.1-py37h0b6359f_0
  seaborn            pkgs/main/noarch::seaborn-0.10.0-py_0
  secretstorage      pkgs/main/linux-64::secretstorage-3.1.2-py37_0
  send2trash         pkgs/main/linux-64::send2trash-1.5.0-py37_0
  setuptools         pkgs/main/linux-64::setuptools-45.2.0-py37_0
  simplegeneric      pkgs/main/linux-64::simplegeneric-0.8.1-py37_2
  singledispatch     pkgs/main/linux-64::singledispatch-3.4.0.3-py37_0
  sip                pkgs/main/linux-64::sip-4.19.8-py37hf484d3e_0
  six                pkgs/main/linux-64::six-1.14.0-py37_0
  snappy             pkgs/main/linux-64::snappy-1.1.7-hbae5bb6_3
  snowballstemmer    pkgs/main/noarch::snowballstemmer-2.0.0-py_0
  sortedcollections  pkgs/main/linux-64::sortedcollections-1.1.2-py37_0
  sortedcontainers   pkgs/main/linux-64::sortedcontainers-2.1.0-py37_0
  soupsieve          pkgs/main/linux-64::soupsieve-1.9.5-py37_0
  sphinx             pkgs/main/noarch::sphinx-2.4.0-py_0
  sphinxcontrib      pkgs/main/linux-64::sphinxcontrib-1.0-py37_1
  sphinxcontrib-app~ pkgs/main/noarch::sphinxcontrib-applehelp-1.0.1-py_0
  sphinxcontrib-dev~ pkgs/main/noarch::sphinxcontrib-devhelp-1.0.1-py_0
  sphinxcontrib-htm~ pkgs/main/noarch::sphinxcontrib-htmlhelp-1.0.2-py_0
  sphinxcontrib-jsm~ pkgs/main/noarch::sphinxcontrib-jsmath-1.0.1-py_0
  sphinxcontrib-qth~ pkgs/main/noarch::sphinxcontrib-qthelp-1.0.2-py_0
  sphinxcontrib-ser~ pkgs/main/noarch::sphinxcontrib-serializinghtml-1.1.3-py_0
  sphinxcontrib-web~ pkgs/main/noarch::sphinxcontrib-websupport-1.2.0-py_0
  spyder             pkgs/main/linux-64::spyder-4.0.1-py37_0
  spyder-kernels     pkgs/main/linux-64::spyder-kernels-1.8.1-py37_0
  sqlalchemy         pkgs/main/linux-64::sqlalchemy-1.3.13-py37h7b6447c_0
  sqlite             pkgs/main/linux-64::sqlite-3.31.1-h7b6447c_0
  statsmodels        pkgs/main/linux-64::statsmodels-0.11.0-py37h7b6447c_0
  sympy              pkgs/main/linux-64::sympy-1.5.1-py37_0
  tbb                pkgs/main/linux-64::tbb-2020.0-hfd86e86_0
  tblib              pkgs/main/noarch::tblib-1.6.0-py_0
  terminado          pkgs/main/linux-64::terminado-0.8.3-py37_0
  testpath           pkgs/main/noarch::testpath-0.4.4-py_0
  tk                 pkgs/main/linux-64::tk-8.6.8-hbc83047_0
  toolz              pkgs/main/noarch::toolz-0.10.0-py_0
  tornado            pkgs/main/linux-64::tornado-6.0.3-py37h7b6447c_3
  tqdm               pkgs/main/noarch::tqdm-4.42.1-py_0
  traitlets          pkgs/main/linux-64::traitlets-4.3.3-py37_0
  ujson              pkgs/main/linux-64::ujson-1.35-py37h14c3975_0
  unicodecsv         pkgs/main/linux-64::unicodecsv-0.14.1-py37_0
  unixodbc           pkgs/main/linux-64::unixodbc-2.3.7-h14c3975_0
  urllib3            pkgs/main/linux-64::urllib3-1.25.8-py37_0
  watchdog           pkgs/main/linux-64::watchdog-0.10.2-py37_0
  wcwidth            pkgs/main/noarch::wcwidth-0.1.8-py_0
  webencodings       pkgs/main/linux-64::webencodings-0.5.1-py37_1
  werkzeug           pkgs/main/noarch::werkzeug-1.0.0-py_0
  wheel              pkgs/main/linux-64::wheel-0.34.2-py37_0
  widgetsnbextension pkgs/main/linux-64::widgetsnbextension-3.5.1-py37_0
  wrapt              pkgs/main/linux-64::wrapt-1.11.2-py37h7b6447c_0
  wurlitzer          pkgs/main/linux-64::wurlitzer-2.0.0-py37_0
  xlrd               pkgs/main/linux-64::xlrd-1.2.0-py37_0
  xlsxwriter         pkgs/main/noarch::xlsxwriter-1.2.7-py_0
  xlwt               pkgs/main/linux-64::xlwt-1.3.0-py37_0
  xmltodict          pkgs/main/noarch::xmltodict-0.12.0-py_0
  xz                 pkgs/main/linux-64::xz-5.2.4-h14c3975_4
  yaml               pkgs/main/linux-64::yaml-0.1.7-had09818_2
  yapf               pkgs/main/noarch::yapf-0.28.0-py_0
  zeromq             pkgs/main/linux-64::zeromq-4.3.1-he6710b0_3
  zict               pkgs/main/noarch::zict-1.0.0-py_0
  zipp               pkgs/main/noarch::zipp-2.2.0-py_0
  zlib               pkgs/main/linux-64::zlib-1.2.11-h7b6447c_3
  zstd               pkgs/main/linux-64::zstd-1.3.7-h0b5b093_0


Preparing transaction: done
Executing transaction: done
installation finished.
Do you wish the installer to initialize Anaconda3
by running conda init? [yes|no]
[no] >>> 

You have chosen to not have conda modify your shell scripts at all.
To activate conda's base environment in your current shell session:

eval "$(/home/zhoukang/anaconda3/bin/conda shell.YOUR_SHELL_NAME hook)" 

To install conda's shell functions for easier access, first activate, then:

conda init

If you'd prefer that conda's base environment not be activated on startup, 
   set the auto_activate_base parameter to false: 

conda config --set auto_activate_base false

Thank you for installing Anaconda3!

===========================================================================

Anaconda and JetBrains are working together to bring you Anaconda-powered
environments tightly integrated in the PyCharm IDE.

PyCharm for Anaconda is available at:
https://www.anaconda.com/pycharm

上一篇下一篇

猜你喜欢

热点阅读