Anaconda3配置python2环境
程序员文章站
2024-03-11 10:05:55
...
[email protected]:~$ pip install lxml
Requirement already satisfied: lxml in ./anaconda3/lib/python3.6/site-packages
You are using pip version 9.0.1, however version 18.0 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
[email protected]:~$ pip install --upgrade pip
Cache entry deserialization failed, entry ignored
Collecting pip
Using cached https://pypi.tuna.tsinghua.edu.cn/packages/5f/25/e52d3f31441505a5f3af41213346e5b6c221c9e086a166f3703d2ddaf940/pip-18.0-py2.py3-none-any.whl
Installing collected packages: pip
Found existing installation: pip 9.0.1
Uninstalling pip-9.0.1:
Exception:
Traceback (most recent call last):
File "/home/sinc-lab/anaconda3/lib/python3.6/shutil.py", line 544, in move
os.rename(src, real_dst)
PermissionError: [Errno 13] Permission denied: '/home/sinc-lab/anaconda3/bin/pip' -> '/tmp/pip-ijiok65i-uninstall/home/sinc-lab/anaconda3/bin/pip'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/sinc-lab/anaconda3/lib/python3.6/site-packages/pip/basecommand.py", line 215, in main
status = self.run(options, args)
File "/home/sinc-lab/anaconda3/lib/python3.6/site-packages/pip/commands/install.py", line 342, in run
prefix=options.prefix_path,
File "/home/sinc-lab/anaconda3/lib/python3.6/site-packages/pip/req/req_set.py", line 778, in install
requirement.uninstall(auto_confirm=True)
File "/home/sinc-lab/anaconda3/lib/python3.6/site-packages/pip/req/req_install.py", line 754, in uninstall
paths_to_remove.remove(auto_confirm)
File "/home/sinc-lab/anaconda3/lib/python3.6/site-packages/pip/req/req_uninstall.py", line 115, in remove
renames(path, new_path)
File "/home/sinc-lab/anaconda3/lib/python3.6/site-packages/pip/utils/__init__.py", line 267, in renames
shutil.move(old, new)
File "/home/sinc-lab/anaconda3/lib/python3.6/shutil.py", line 559, in move
os.unlink(src)
PermissionError: [Errno 13] Permission denied: '/home/sinc-lab/anaconda3/bin/pip'
You are using pip version 9.0.1, however version 18.0 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
[email protected]:~$ conda create -n py27 python=2.7
Solving environment: done
==> WARNING: A newer version of conda exists. <==
current version: 4.4.10
latest version: 4.5.10
Please update conda by running
$ conda update -n base conda
## Package Plan ##
environment location: /home/sinc-lab/.conda/envs/py27
added / updated specs:
- python=2.7
The following packages will be downloaded:
package | build
---------------------------|-----------------
pip-9.0.1 | py27_1 1.6 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
setuptools-36.4.0 | py27_1 557 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
certifi-2016.2.28 | py27_0 211 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
python-2.7.13 | 0 11.5 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
wheel-0.29.0 | py27_0 81 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
------------------------------------------------------------
Total: 13.9 MB
The following NEW packages will be INSTALLED:
certifi: 2016.2.28-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
openssl: 1.0.2l-0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pip: 9.0.1-py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
python: 2.7.13-0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
readline: 6.2-2 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
setuptools: 36.4.0-py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
sqlite: 3.13.0-0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
tk: 8.5.18-0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
wheel: 0.29.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
zlib: 1.2.11-0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
Proceed ([y]/n)? y
Downloading and Extracting Packages
pip 9.0.1: ################################################################################################################## | 100%
setuptools 36.4.0: ########################################################################################################## | 100%
certifi 2016.2.28: ########################################################################################################## | 100%
python 2.7.13: ############################################################################################################## | 100%
wheel 0.29.0: ############################################################################################################### | 100%
Preparing transaction: done
Verifying transaction: done
Executing transaction: done
#
# To activate this environment, use:
# > source activate py27
#
# To deactivate an active environment, use:
# > source deactivate
#
[email protected]:~$ source activate py27
(py27) [email protected]:~$ pip install lxml
Collecting lxml
Cache entry deserialization failed, entry ignored
Downloading https://pypi.tuna.tsinghua.edu.cn/packages/39/e0/bb4bb8d03a98ba530a13e5d27c7ae5eb9b2b53ce36c4e854429fcf2b90be/lxml-4.2.4-cp27-cp27mu-manylinux1_x86_64.whl (5.8MB)
100% |████████████████████████████████| 5.8MB 216kB/s
Installing collected packages: lxml
Successfully installed lxml-4.2.4
You are using pip version 9.0.1, however version 18.0 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
(py27) [email protected]:~$ conda list
# packages in environment at /home/sinc-lab/.conda/envs/py27:
#
# Name Version Build Channel
certifi 2016.2.28 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
lxml 4.2.4 <pip>
openssl 1.0.2l 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pip 9.0.1 py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
python 2.7.13 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
readline 6.2 2 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
setuptools 36.4.0 py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
sqlite 3.13.0 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
tk 8.5.18 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
wheel 0.29.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
zlib 1.2.11 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
(py27) [email protected]:~$ pip uninstall lxml
Uninstalling lxml-4.2.4:
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml-4.2.4.dist-info/INSTALLER
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml-4.2.4.dist-info/METADATA
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml-4.2.4.dist-info/RECORD
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml-4.2.4.dist-info/WHEEL
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml-4.2.4.dist-info/top_level.txt
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/ElementInclude.py
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/ElementInclude.pyc
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/__init__.py
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/__init__.pyc
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/_elementpath.py
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/_elementpath.pyc
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/_elementpath.so
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/builder.py
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/builder.pyc
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/builder.so
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/cssselect.py
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/cssselect.pyc
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/doctestcompare.py
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/doctestcompare.pyc
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/etree.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/etree.so
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/etree_api.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/html/ElementSoup.py
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/html/ElementSoup.pyc
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/html/__init__.py
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/html/__init__.pyc
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/html/_diffcommand.py
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/html/_diffcommand.pyc
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/html/_html5builder.py
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/html/_html5builder.pyc
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/html/_setmixin.py
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/html/_setmixin.pyc
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/html/builder.py
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/html/builder.pyc
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/html/clean.py
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/html/clean.pyc
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/html/clean.so
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/html/defs.py
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/html/defs.pyc
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/html/diff.py
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/html/diff.pyc
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/html/diff.so
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/html/formfill.py
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/html/formfill.pyc
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/html/html5parser.py
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/html/html5parser.pyc
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/html/soupparser.py
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/html/soupparser.pyc
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/html/usedoctest.py
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/html/usedoctest.pyc
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/__init__.pxd
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/__init__.py
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/__init__.pyc
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/c14n.pxd
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/config.pxd
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/dtdvalid.pxd
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/etree_defs.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/etreepublic.pxd
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/htmlparser.pxd
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libexslt/exslt.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libexslt/exsltconfig.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libexslt/exsltexports.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/DOCBparser.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/HTMLparser.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/HTMLtree.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/SAX.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/SAX2.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/c14n.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/catalog.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/chvalid.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/debugXML.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/dict.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/encoding.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/entities.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/globals.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/hash.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/list.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/nanoftp.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/nanohttp.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/parser.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/parserInternals.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/relaxng.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/schemasInternals.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/schematron.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/threads.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/tree.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/uri.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/valid.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/xinclude.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/xlink.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/xmlIO.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/xmlautomata.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/xmlerror.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/xmlexports.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/xmlmemory.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/xmlmodule.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/xmlreader.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/xmlregexp.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/xmlsave.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/xmlschemas.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/xmlschemastypes.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/xmlstring.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/xmlunicode.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/xmlversion.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/xmlwriter.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/xpath.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/xpathInternals.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxml/xpointer.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxslt/attributes.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxslt/documents.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxslt/extensions.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxslt/extra.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxslt/functions.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxslt/imports.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxslt/keys.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxslt/namespaces.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxslt/numbersInternals.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxslt/pattern.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxslt/preproc.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxslt/security.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxslt/templates.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxslt/transform.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxslt/variables.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxslt/xslt.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxslt/xsltInternals.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxslt/xsltconfig.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxslt/xsltexports.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxslt/xsltlocale.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/libxslt/xsltutils.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/lxml-version.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/relaxng.pxd
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/schematron.pxd
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/tree.pxd
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/uri.pxd
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/xinclude.pxd
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/xmlerror.pxd
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/xmlparser.pxd
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/xmlschema.pxd
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/xpath.pxd
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/includes/xslt.pxd
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/isoschematron/__init__.py
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/isoschematron/__init__.pyc
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/isoschematron/resources/rng/iso-schematron.rng
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/isoschematron/resources/xsl/RNG2Schtrn.xsl
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/isoschematron/resources/xsl/XSD2Schtrn.xsl
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_abstract_expand.xsl
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_dsdl_include.xsl
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_message.xsl
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_skeleton_for_xslt1.xsl
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_svrl_for_xslt1.xsl
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/readme.txt
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/lxml.etree.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/lxml.etree_api.h
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/objectify.so
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/pyclasslookup.py
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/pyclasslookup.pyc
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/sax.py
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/sax.pyc
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/usedoctest.py
/home/sinc-lab/.conda/envs/py27/lib/python2.7/site-packages/lxml/usedoctest.pyc
Proceed (y/n)? y
Successfully uninstalled lxml-4.2.4
You are using pip version 9.0.1, however version 18.0 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
(py27) [email protected]:~$ conda install -n py27 lxml
Solving environment: done
==> WARNING: A newer version of conda exists. <==
current version: 4.4.10
latest version: 4.5.10
Please update conda by running
$ conda update -n base conda
## Package Plan ##
environment location: /home/sinc-lab/.conda/envs/py27
added / updated specs:
- lxml
The following packages will be downloaded:
package | build
---------------------------|-----------------
lxml-3.8.0 | py27_0 3.0 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
libxslt-1.1.29 | 0 983 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
------------------------------------------------------------
Total: 3.9 MB
The following NEW packages will be INSTALLED:
libiconv: 1.14-0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
libxml2: 2.9.4-0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
libxslt: 1.1.29-0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
lxml: 3.8.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
Proceed ([y]/n)? y
Downloading and Extracting Packages
lxml 3.8.0: ################################################################################################################# | 100%
libxslt 1.1.29: ############################################################################################################# | 100%
Preparing transaction: done
Verifying transaction: done
Executing transaction: done
(py27) [email protected]:~$ conda list
# packages in environment at /home/sinc-lab/.conda/envs/py27:
#
# Name Version Build Channel
certifi 2016.2.28 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
libiconv 1.14 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
libxml2 2.9.4 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
libxslt 1.1.29 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
lxml 3.8.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
openssl 1.0.2l 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pip 9.0.1 py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
python 2.7.13 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
readline 6.2 2 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
setuptools 36.4.0 py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
sqlite 3.13.0 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
tk 8.5.18 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
wheel 0.29.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
zlib 1.2.11 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
(py27) [email protected]:~$ conda install -n py27 anaconda
Solving environment: done
==> WARNING: A newer version of conda exists. <==
current version: 4.4.10
latest version: 4.5.10
Please update conda by running
$ conda update -n base conda
## Package Plan ##
environment location: /home/sinc-lab/.conda/envs/py27
added / updated specs:
- anaconda
The following packages will be downloaded:
package | build
---------------------------|-----------------
pyflakes-1.5.0 | py27_0 80 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pycairo-1.10.0 | py27_0 81 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
yaml-0.1.6 | 0 246 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
fastcache-1.0.2 | py27_1 41 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pyparsing-2.1.4 | py27_0 70 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
docutils-0.13.1 | py27_0 679 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
six-1.10.0 | py27_0 16 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
openpyxl-2.4.7 | py27_0 285 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
mkl-2017.0.1 | 0 128.2 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pywavelets-0.5.2 | np112py27_0 5.1 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
odo-0.5.0 | py27_1 175 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
ply-3.10 | py27_0 75 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pygments-2.2.0 | py27_0 1.3 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pandas-0.20.1 | np112py27_0 19.2 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
libgfortran-3.0.0 | 1 281 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
entrypoints-0.2.2 | py27_1 9 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
backports_abc-0.5 | py27_0 11 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
grin-1.2.1 | py27_3 24 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
itsdangerous-0.24 | py27_0 16 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
nbformat-4.3.0 | py27_0 133 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
multipledispatch-0.4.9 | py27_0 12 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
rope-0.9.4 | py27_1 225 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
bottleneck-1.2.1 | np112py27_0 304 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
patsy-0.4.1 | py27_0 325 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
backports-1.0 | py27_0 1 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
clyent-1.2.2 | py27_0 15 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
libgcc-4.8.5 | 2 601 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
zlib-1.2.8 | 3 101 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
ruamel_yaml-0.11.14 | py27_1 361 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
snowballstemmer-1.2.1 | py27_0 73 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
enum34-1.1.6 | py27_0 53 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
contextlib2-0.5.5 | py27_0 14 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
sortedcollections-0.5.3 | py27_0 13 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
qt-5.6.2 | 4 43.4 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
seaborn-0.7.1 | py27_0 272 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
chardet-3.0.3 | py27_0 175 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
llvmlite-0.18.0 | py27_0 11.2 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
alabaster-0.7.10 | py27_0 14 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
sip-4.18 | py27_0 264 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
distributed-1.16.3 | py27_0 551 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
et_xmlfile-1.0.1 | py27_0 15 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
networkx-1.11 | py27_0 1.1 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
greenlet-0.4.12 | py27_0 37 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
datashape-0.5.4 | py27_0 96 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
qtawesome-0.4.4 | py27_0 159 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
subprocess32-3.2.7 | py27_0 55 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
hdf5-1.8.17 | 1 1.9 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
numexpr-2.6.2 | np112py27_0 353 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
bleach-1.5.0 | py27_0 21 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
locket-0.2.0 | py27_1 6 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
psutil-5.2.2 | py27_0 260 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
jinja2-2.9.6 | py27_0 348 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
beautifulsoup4-4.6.0 | py27_0 129 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pytz-2017.2 | py27_0 204 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
html5lib-0.999 | py27_0 172 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
tornado-4.5.1 | py27_0 592 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
cloudpickle-0.2.2 | py27_0 20 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
dbus-1.10.10 | 0 2.4 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
mkl-service-1.1.2 | py27_3 15 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
simplegeneric-0.8.1 | py27_1 7 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
traitlets-4.3.2 | py27_0 125 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
libtool-2.4.2 | 0 547 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pango-1.40.3 | 1 938 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
xz-5.2.2 | 1 669 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pexpect-4.2.1 | py27_0 69 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
cython-0.25.2 | py27_0 5.6 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
werkzeug-0.12.2 | py27_0 408 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
scipy-0.19.0 | np112py27_0 35.3 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
numpydoc-0.6.0 | py27_0 57 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pyqt-5.6.0 | py27_2 5.3 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pixman-0.34.0 | 0 3.8 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
xlwt-1.2.0 | py27_0 160 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
sphinx-1.5.6 | py27_0 1.3 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
prompt_toolkit-1.0.14 | py27_0 330 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
requests-2.14.2 | py27_0 700 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
astroid-1.4.9 | py27_0 251 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pathlib2-2.2.1 | py27_0 30 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
tblib-1.3.2 | py27_0 15 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
cairo-1.14.8 | 0 609 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
lxml-3.7.3 | py27_0 2.9 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
curl-7.52.1 | 0 558 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
ipaddress-1.0.18 | py27_0 31 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
isort-4.2.5 | py27_0 51 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
widgetsnbextension-2.0.0 | py27_0 878 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
ipykernel-4.6.1 | py27_0 135 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
spyder-3.1.4 | py27_0 3.1 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
bitarray-0.8.1 | py27_0 89 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
jupyter_core-4.3.0 | py27_0 59 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
cdecimal-2.3 | py27_2 439 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
numpy-1.12.1 | py27_0 6.6 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
nltk-3.2.3 | py27_0 1.8 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
boto-2.46.1 | py27_0 1.4 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
xlsxwriter-0.9.6 | py27_0 198 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
idna-2.5 | py27_0 121 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
jupyter-1.0.0 | py27_3 3 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
olefile-0.44 | py27_0 52 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
scandir-1.5 | py27_0 40 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
unicodecsv-0.14.1 | py27_0 19 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pylint-1.6.4 | py27_1 316 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
cffi-1.10.0 | py27_0 329 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
notebook-5.0.0 | py27_0 5.3 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
mistune-0.7.4 | py27_0 605 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
nbconvert-5.1.1 | py27_0 355 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
anaconda-client-1.6.3 | py27_0 129 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
ipython-5.3.0 | py27_0 974 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
sortedcontainers-1.5.7 | py27_0 44 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
h5py-2.7.0 | np112py27_0 2.5 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
flask-0.12.2 | py27_0 102 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pycparser-2.17 | py27_0 153 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
ssl_match_hostname-3.4.0.2 | py27_1 6 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
dask-0.14.3 | py27_1 812 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pillow-4.1.1 | py27_0 840 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pycurl-7.43.0 | py27_2 132 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pyodbc-4.0.16 | py27_0 168 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
libpng-1.6.27 | 0 219 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
markupsafe-0.23 | py27_2 31 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
numba-0.33.0 | np112py27_0 2.2 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
packaging-16.8 | py27_0 30 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
bokeh-0.12.5 | py27_1 4.1 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
ptyprocess-0.5.1 | py27_0 19 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
toolz-0.8.2 | py27_0 89 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pyopenssl-17.0.0 | py27_0 74 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pyyaml-3.12 | py27_0 313 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
xlrd-1.0.0 | py27_0 181 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
jupyter_console-5.1.0 | py27_0 33 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
cycler-0.10.0 | py27_0 11 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
zict-0.1.2 | py27_0 17 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
cytoolz-0.8.2 | py27_0 913 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
partd-0.3.8 | py27_0 29 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
blaze-0.10.1 | py27_0 577 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
astropy-1.3.2 | np112py27_0 8.8 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
ipython_genutils-0.2.0 | py27_0 37 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
configparser-3.5.0 | py27_0 31 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
jsonschema-2.6.0 | py27_0 60 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pytest-3.0.7 | py27_0 258 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
wrapt-1.10.10 | py27_0 64 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
path.py-10.3.1 | py27_0 48 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
harfbuzz-0.9.39 | 2 1.2 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
scikit-learn-0.18.1 | np112py27_1 11.0 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
terminado-0.6 | py27_0 18 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
click-6.7 | py27_0 103 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
navigator-updater-0.1.0 | py27_0 1.2 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
ipywidgets-6.0.0 | py27_0 63 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
nose-1.3.7 | py27_1 194 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
decorator-4.0.11 | py27_0 15 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
gevent-1.2.1 | py27_0 1.3 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
jupyter_client-5.0.1 | py27_0 112 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
get_terminal_size-1.0.0 | py27_0 4 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pandocfilters-1.4.1 | py27_0 12 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
python-dateutil-2.6.0 | py27_0 232 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
qtpy-1.2.1 | py27_0 28 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
imagesize-0.7.1 | py27_0 3 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
jdcal-1.3 | py27_0 8 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pickleshare-0.7.4 | py27_0 8 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
anaconda-project-0.6.0 | py27_0 208 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
functools32-3.2.3.2 | py27_0 15 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
babel-2.4.0 | py27_0 4.9 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
sqlalchemy-1.1.9 | py27_0 1.4 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pycrypto-2.6.1 | py27_6 459 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
singledispatch-3.4.0.3 | py27_0 12 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
py-1.4.33 | py27_0 130 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
anaconda-navigator-1.6.2 | py27_0 3.8 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
lazy-object-proxy-1.2.2 | py27_0 53 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
scikit-image-0.13.0 | np112py27_0 31.6 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
anaconda-4.4.0 | np112py27_0 6 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
matplotlib-2.0.2 | np112py27_0 10.6 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
mpmath-0.19 | py27_1 873 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
funcsigs-1.0.2 | py27_0 18 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
futures-3.1.1 | py27_0 22 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
cryptography-1.8.1 | py27_0 850 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
wcwidth-0.1.7 | py27_0 21 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pep8-1.7.0 | py27_0 47 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pytables-3.3.0 | np112py27_0 5.5 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
_license-1.1 | py27_1 271 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
testpath-0.3 | py27_0 15 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
jedi-0.10.2 | py27_2 242 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
unixodbc-2.3.4 | 0 688 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pycosat-0.6.2 | py27_0 194 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
sympy-1.0 | py27_0 5.6 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
statsmodels-0.8.0 | np112py27_0 7.3 MB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
setuptools-27.2.0 | py27_0 521 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pyzmq-16.0.2 | py27_0 835 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
flask-cors-3.0.2 | py27_0 20 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
asn1crypto-0.22.0 | py27_0 145 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
colorama-0.3.9 | py27_0 22 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
heapdict-1.0.0 | py27_1 5 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
msgpack-python-0.4.8 | py27_0 209 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
qtconsole-4.3.0 | py27_0 173 KB https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
------------------------------------------------------------
Total: 419.2 MB
The following NEW packages will be INSTALLED:
_license: 1.1-py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
alabaster: 0.7.10-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
anaconda: 4.4.0-np112py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
anaconda-client: 1.6.3-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
anaconda-navigator: 1.6.2-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
anaconda-project: 0.6.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
asn1crypto: 0.22.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
astroid: 1.4.9-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
astropy: 1.3.2-np112py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
babel: 2.4.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
backports: 1.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
backports_abc: 0.5-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
beautifulsoup4: 4.6.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
bitarray: 0.8.1-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
blaze: 0.10.1-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
bleach: 1.5.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
bokeh: 0.12.5-py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
boto: 2.46.1-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
bottleneck: 1.2.1-np112py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
cairo: 1.14.8-0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
cdecimal: 2.3-py27_2 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
cffi: 1.10.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
chardet: 3.0.3-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
click: 6.7-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
cloudpickle: 0.2.2-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
clyent: 1.2.2-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
colorama: 0.3.9-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
configparser: 3.5.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
contextlib2: 0.5.5-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
cryptography: 1.8.1-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
curl: 7.52.1-0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
cycler: 0.10.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
cython: 0.25.2-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
cytoolz: 0.8.2-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
dask: 0.14.3-py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
datashape: 0.5.4-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
dbus: 1.10.10-0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
decorator: 4.0.11-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
distributed: 1.16.3-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
docutils: 0.13.1-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
entrypoints: 0.2.2-py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
enum34: 1.1.6-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
et_xmlfile: 1.0.1-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
expat: 2.1.0-0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
fastcache: 1.0.2-py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
flask: 0.12.2-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
flask-cors: 3.0.2-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
fontconfig: 2.12.1-3 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
freetype: 2.5.5-2 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
funcsigs: 1.0.2-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
functools32: 3.2.3.2-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
futures: 3.1.1-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
get_terminal_size: 1.0.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
gevent: 1.2.1-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
glib: 2.50.2-1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
greenlet: 0.4.12-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
grin: 1.2.1-py27_3 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
gst-plugins-base: 1.8.0-0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
gstreamer: 1.8.0-0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
h5py: 2.7.0-np112py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
harfbuzz: 0.9.39-2 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
hdf5: 1.8.17-1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
heapdict: 1.0.0-py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
html5lib: 0.999-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
icu: 54.1-0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
idna: 2.5-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
imagesize: 0.7.1-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
ipaddress: 1.0.18-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
ipykernel: 4.6.1-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
ipython: 5.3.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
ipython_genutils: 0.2.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
ipywidgets: 6.0.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
isort: 4.2.5-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
itsdangerous: 0.24-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
jbig: 2.1-0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
jdcal: 1.3-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
jedi: 0.10.2-py27_2 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
jinja2: 2.9.6-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
jpeg: 9b-0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
jsonschema: 2.6.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
jupyter: 1.0.0-py27_3 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
jupyter_client: 5.0.1-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
jupyter_console: 5.1.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
jupyter_core: 4.3.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
lazy-object-proxy: 1.2.2-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
libffi: 3.2.1-1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
libgcc: 4.8.5-2 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
libgfortran: 3.0.0-1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
libpng: 1.6.27-0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
libsodium: 1.0.10-0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
libtiff: 4.0.6-3 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
libtool: 2.4.2-0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
libxcb: 1.12-1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
llvmlite: 0.18.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
locket: 0.2.0-py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
markupsafe: 0.23-py27_2 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
matplotlib: 2.0.2-np112py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
mistune: 0.7.4-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
mkl: 2017.0.1-0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
mkl-service: 1.1.2-py27_3 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
mpmath: 0.19-py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
msgpack-python: 0.4.8-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
multipledispatch: 0.4.9-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
navigator-updater: 0.1.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
nbconvert: 5.1.1-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
nbformat: 4.3.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
networkx: 1.11-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
nltk: 3.2.3-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
nose: 1.3.7-py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
notebook: 5.0.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
numba: 0.33.0-np112py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
numexpr: 2.6.2-np112py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
numpy: 1.12.1-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
numpydoc: 0.6.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
odo: 0.5.0-py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
olefile: 0.44-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
openpyxl: 2.4.7-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
packaging: 16.8-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pandas: 0.20.1-np112py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pandocfilters: 1.4.1-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pango: 1.40.3-1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
partd: 0.3.8-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
path.py: 10.3.1-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pathlib2: 2.2.1-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
patsy: 0.4.1-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pcre: 8.39-1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pep8: 1.7.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pexpect: 4.2.1-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pickleshare: 0.7.4-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pillow: 4.1.1-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pixman: 0.34.0-0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
ply: 3.10-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
prompt_toolkit: 1.0.14-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
psutil: 5.2.2-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
ptyprocess: 0.5.1-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
py: 1.4.33-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pycairo: 1.10.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pycosat: 0.6.2-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pycparser: 2.17-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pycrypto: 2.6.1-py27_6 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pycurl: 7.43.0-py27_2 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pyflakes: 1.5.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pygments: 2.2.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pylint: 1.6.4-py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pyodbc: 4.0.16-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pyopenssl: 17.0.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pyparsing: 2.1.4-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pyqt: 5.6.0-py27_2 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pytables: 3.3.0-np112py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pytest: 3.0.7-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
python-dateutil: 2.6.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pytz: 2017.2-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pywavelets: 0.5.2-np112py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pyyaml: 3.12-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pyzmq: 16.0.2-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
qt: 5.6.2-4 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
qtawesome: 0.4.4-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
qtconsole: 4.3.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
qtpy: 1.2.1-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
requests: 2.14.2-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
rope: 0.9.4-py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
ruamel_yaml: 0.11.14-py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
scandir: 1.5-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
scikit-image: 0.13.0-np112py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
scikit-learn: 0.18.1-np112py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
scipy: 0.19.0-np112py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
seaborn: 0.7.1-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
simplegeneric: 0.8.1-py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
singledispatch: 3.4.0.3-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
sip: 4.18-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
six: 1.10.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
snowballstemmer: 1.2.1-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
sortedcollections: 0.5.3-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
sortedcontainers: 1.5.7-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
sphinx: 1.5.6-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
spyder: 3.1.4-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
sqlalchemy: 1.1.9-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
ssl_match_hostname: 3.4.0.2-py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
statsmodels: 0.8.0-np112py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
subprocess32: 3.2.7-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
sympy: 1.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
tblib: 1.3.2-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
terminado: 0.6-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
testpath: 0.3-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
toolz: 0.8.2-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
tornado: 4.5.1-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
traitlets: 4.3.2-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
unicodecsv: 0.14.1-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
unixodbc: 2.3.4-0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
wcwidth: 0.1.7-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
werkzeug: 0.12.2-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
widgetsnbextension: 2.0.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
wrapt: 1.10.10-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
xlrd: 1.0.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
xlsxwriter: 0.9.6-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
xlwt: 1.2.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
xz: 5.2.2-1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
yaml: 0.1.6-0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
zeromq: 4.1.5-0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
zict: 0.1.2-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
The following packages will be DOWNGRADED:
lxml: 3.8.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free --> 3.7.3-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
setuptools: 36.4.0-py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free --> 27.2.0-py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
zlib: 1.2.11-0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free --> 1.2.8-3 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
Proceed ([y]/n)? y
Downloading and Extracting Packages
pyflakes 1.5.0: ############################################################################################################# | 100%
pycairo 1.10.0: ############################################################################################################# | 100%
yaml 0.1.6: ################################################################################################################# | 100%
fastcache 1.0.2: ############################################################################################################ | 100%
pyparsing 2.1.4: ############################################################################################################ | 100%
docutils 0.13.1: ############################################################################################################ | 100%
six 1.10.0: ################################################################################################################# | 100%
openpyxl 2.4.7: ############################################################################################################# | 100%
mkl 2017.0.1: ############################################################################################################### | 100%
pywavelets 0.5.2: ########################################################################################################### | 100%
odo 0.5.0: ################################################################################################################## | 100%
ply 3.10: ################################################################################################################### | 100%
pygments 2.2.0: ############################################################################################################# | 100%
pandas 0.20.1: ############################################################################################################## | 100%
libgfortran 3.0.0: ########################################################################################################## | 100%
entrypoints 0.2.2: ########################################################################################################## | 100%
backports_abc 0.5: ########################################################################################################## | 100%
grin 1.2.1: ################################################################################################################# | 100%
itsdangerous 0.24: ########################################################################################################## | 100%
nbformat 4.3.0: ############################################################################################################# | 100%
multipledispatch 0.4.9: ##################################################################################################### | 100%
rope 0.9.4: ################################################################################################################# | 100%
bottleneck 1.2.1: ########################################################################################################### | 100%
patsy 0.4.1: ################################################################################################################ | 100%
backports 1.0: ############################################################################################################## | 100%
clyent 1.2.2: ############################################################################################################### | 100%
libgcc 4.8.5: ############################################################################################################### | 100%
zlib 1.2.8: ################################################################################################################# | 100%
ruamel_yaml 0.11.14: ######################################################################################################## | 100%
snowballstemmer 1.2.1: ###################################################################################################### | 100%
enum34 1.1.6: ############################################################################################################### | 100%
contextlib2 0.5.5: ########################################################################################################## | 100%
sortedcollections 0.5.3: #################################################################################################### | 100%
qt 5.6.2: ################################################################################################################### | 100%
seaborn 0.7.1: ############################################################################################################## | 100%
chardet 3.0.3: ############################################################################################################## | 100%
llvmlite 0.18.0: ############################################################################################################ | 100%
alabaster 0.7.10: ########################################################################################################### | 100%
sip 4.18: ################################################################################################################### | 100%
distributed 1.16.3: ######################################################################################################### | 100%
et_xmlfile 1.0.1: ########################################################################################################### | 100%
networkx 1.11: ############################################################################################################## | 100%
greenlet 0.4.12: ############################################################################################################ | 100%
datashape 0.5.4: ############################################################################################################ | 100%
qtawesome 0.4.4: ############################################################################################################ | 100%
subprocess32 3.2.7: ######################################################################################################### | 100%
hdf5 1.8.17: ################################################################################################################ | 100%
numexpr 2.6.2: ############################################################################################################## | 100%
bleach 1.5.0: ############################################################################################################### | 100%
locket 0.2.0: ############################################################################################################### | 100%
psutil 5.2.2: ############################################################################################################### | 100%
jinja2 2.9.6: ############################################################################################################### | 100%
beautifulsoup4 4.6.0: ####################################################################################################### | 100%
pytz 2017.2: ################################################################################################################ | 100%
html5lib 0.999: ############################################################################################################# | 100%
tornado 4.5.1: ############################################################################################################## | 100%
cloudpickle 0.2.2: ########################################################################################################## | 100%
dbus 1.10.10: ############################################################################################################### | 100%
mkl-service 1.1.2: ########################################################################################################## | 100%
simplegeneric 0.8.1: ######################################################################################################## | 100%
traitlets 4.3.2: ############################################################################################################ | 100%
libtool 2.4.2: ############################################################################################################## | 100%
pango 1.40.3: ############################################################################################################### | 100%
xz 5.2.2: ################################################################################################################### | 100%
pexpect 4.2.1: ############################################################################################################## | 100%
cython 0.25.2: ############################################################################################################## | 100%
werkzeug 0.12.2: ############################################################################################################ | 100%
scipy 0.19.0: ############################################################################################################### | 100%
numpydoc 0.6.0: ############################################################################################################# | 100%
pyqt 5.6.0: ################################################################################################################# | 100%
pixman 0.34.0: ############################################################################################################## | 100%
xlwt 1.2.0: ################################################################################################################# | 100%
sphinx 1.5.6: ############################################################################################################### | 100%
prompt_toolkit 1.0.14: ###################################################################################################### | 100%
requests 2.14.2: ############################################################################################################ | 100%
astroid 1.4.9: ############################################################################################################## | 100%
pathlib2 2.2.1: ############################################################################################################# | 100%
tblib 1.3.2: ################################################################################################################ | 100%
cairo 1.14.8: ############################################################################################################### | 100%
lxml 3.7.3: ################################################################################################################# | 100%
curl 7.52.1: ################################################################################################################ | 100%
ipaddress 1.0.18: ########################################################################################################### | 100%
isort 4.2.5: ################################################################################################################ | 100%
widgetsnbextension 2.0.0: ################################################################################################### | 100%
ipykernel 4.6.1: ############################################################################################################ | 100%
spyder 3.1.4: ############################################################################################################### | 100%
bitarray 0.8.1: ############################################################################################################# | 100%
jupyter_core 4.3.0: ######################################################################################################### | 100%
cdecimal 2.3: ############################################################################################################### | 100%
numpy 1.12.1: ############################################################################################################### | 100%
nltk 3.2.3: ################################################################################################################# | 100%
boto 2.46.1: ################################################################################################################ | 100%
xlsxwriter 0.9.6: ########################################################################################################### | 100%
idna 2.5: ################################################################################################################### | 100%
jupyter 1.0.0: ############################################################################################################## | 100%
olefile 0.44: ############################################################################################################### | 100%
scandir 1.5: ################################################################################################################ | 100%
unicodecsv 0.14.1: ########################################################################################################## | 100%
pylint 1.6.4: ############################################################################################################### | 100%
cffi 1.10.0: ################################################################################################################ | 100%
notebook 5.0.0: ############################################################################################################# | 100%
mistune 0.7.4: ############################################################################################################## | 100%
nbconvert 5.1.1: ############################################################################################################ | 100%
anaconda-client 1.6.3: ###################################################################################################### | 100%
ipython 5.3.0: ############################################################################################################## | 100%
sortedcontainers 1.5.7: ##################################################################################################### | 100%
h5py 2.7.0: ################################################################################################################# | 100%
flask 0.12.2: ############################################################################################################### | 100%
pycparser 2.17: ############################################################################################################# | 100%
ssl_match_hostname 3.4.0.2: ################################################################################################# | 100%
dask 0.14.3: ################################################################################################################ | 100%
pillow 4.1.1: ############################################################################################################### | 100%
pycurl 7.43.0: ############################################################################################################## | 100%
pyodbc 4.0.16: ############################################################################################################## | 100%
libpng 1.6.27: ############################################################################################################## | 100%
markupsafe 0.23: ############################################################################################################ | 100%
numba 0.33.0: ############################################################################################################### | 100%
packaging 16.8: ############################################################################################################# | 100%
bokeh 0.12.5: ############################################################################################################### | 100%
ptyprocess 0.5.1: ########################################################################################################### | 100%
toolz 0.8.2: ################################################################################################################ | 100%
pyopenssl 17.0.0: ########################################################################################################### | 100%
pyyaml 3.12: ################################################################################################################ | 100%
xlrd 1.0.0: ################################################################################################################# | 100%
jupyter_console 5.1.0: ###################################################################################################### | 100%
cycler 0.10.0: ############################################################################################################## | 100%
zict 0.1.2: ################################################################################################################# | 100%
cytoolz 0.8.2: ############################################################################################################## | 100%
partd 0.3.8: ################################################################################################################ | 100%
blaze 0.10.1: ############################################################################################################### | 100%
astropy 1.3.2: ############################################################################################################## | 100%
ipython_genutils 0.2.0: ##################################################################################################### | 100%
configparser 3.5.0: ######################################################################################################### | 100%
jsonschema 2.6.0: ########################################################################################################### | 100%
pytest 3.0.7: ############################################################################################################### | 100%
wrapt 1.10.10: ############################################################################################################## | 100%
path.py 10.3.1: ############################################################################################################# | 100%
harfbuzz 0.9.39: ############################################################################################################ | 100%
scikit-learn 0.18.1: ######################################################################################################## | 100%
terminado 0.6: ############################################################################################################## | 100%
click 6.7: ################################################################################################################## | 100%
navigator-updater 0.1.0: #################################################################################################### | 100%
ipywidgets 6.0.0: ########################################################################################################### | 100%
nose 1.3.7: ################################################################################################################# | 100%
decorator 4.0.11: ########################################################################################################### | 100%
gevent 1.2.1: ############################################################################################################### | 100%
jupyter_client 5.0.1: ####################################################################################################### | 100%
get_terminal_size 1.0.0: #################################################################################################### | 100%
pandocfilters 1.4.1: ######################################################################################################## | 100%
python-dateutil 2.6.0: ###################################################################################################### | 100%
qtpy 1.2.1: ################################################################################################################# | 100%
imagesize 0.7.1: ############################################################################################################ | 100%
jdcal 1.3: ################################################################################################################## | 100%
pickleshare 0.7.4: ########################################################################################################## | 100%
anaconda-project 0.6.0: ##################################################################################################### | 100%
functools32 3.2.3.2: ######################################################################################################## | 100%
babel 2.4.0: ################################################################################################################ | 100%
sqlalchemy 1.1.9: ########################################################################################################### | 100%
pycrypto 2.6.1: ############################################################################################################# | 100%
singledispatch 3.4.0.3: ##################################################################################################### | 100%
py 1.4.33: ################################################################################################################## | 100%
anaconda-navigator 1.6.2: ################################################################################################### | 100%
lazy-object-proxy 1.2.2: #################################################################################################### | 100%
scikit-image 0.13.0: ######################################################################################################## | 100%
anaconda 4.4.0: ############################################################################################################# | 100%
matplotlib 2.0.2: ########################################################################################################### | 100%
mpmath 0.19: ################################################################################################################ | 100%
funcsigs 1.0.2: ############################################################################################################# | 100%
futures 3.1.1: ############################################################################################################## | 100%
cryptography 1.8.1: ######################################################################################################### | 100%
wcwidth 0.1.7: ############################################################################################################## | 100%
pep8 1.7.0: ################################################################################################################# | 100%
pytables 3.3.0: ############################################################################################################# | 100%
_license 1.1: ############################################################################################################### | 100%
testpath 0.3: ############################################################################################################### | 100%
jedi 0.10.2: ################################################################################################################ | 100%
unixodbc 2.3.4: ############################################################################################################# | 100%
pycosat 0.6.2: ############################################################################################################## | 100%
sympy 1.0: ################################################################################################################## | 100%
statsmodels 0.8.0: ########################################################################################################## | 100%
setuptools 27.2.0: ########################################################################################################## | 100%
pyzmq 16.0.2: ############################################################################################################### | 100%
flask-cors 3.0.2: ########################################################################################################### | 100%
asn1crypto 0.22.0: ########################################################################################################## | 100%
colorama 0.3.9: ############################################################################################################# | 100%
heapdict 1.0.0: ############################################################################################################# | 100%
msgpack-python 0.4.8: ####################################################################################################### | 100%
qtconsole 4.3.0: ############################################################################################################ | 100%
Preparing transaction: done
Verifying transaction: |
SafetyError: The package for qt located at /home/sinc-lab/.conda/pkgs/qt-5.6.2-4
appears to be corrupted. The path 'bin/qt.conf'
has a sha256 mismatch.
reported sha256: de038e40fef1776fcde7982b1c387f040162d4451559f3f233883ab43a2b2efa
actual sha256: 185aae74d18e43a93841f747aced5018ef96393282579be9982e63ccf6b288b1
done
Executing transaction: done
(py27) [email protected]:~$ conda list
# packages in environment at /home/sinc-lab/.conda/envs/py27:
#
# Name Version Build Channel
_license 1.1 py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
alabaster 0.7.10 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
anaconda 4.4.0 np112py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
anaconda-client 1.6.3 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
anaconda-navigator 1.6.2 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
anaconda-project 0.6.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
asn1crypto 0.22.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
astroid 1.4.9 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
astropy 1.3.2 np112py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
babel 2.4.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
backports 1.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
backports_abc 0.5 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
beautifulsoup4 4.6.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
bitarray 0.8.1 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
blaze 0.10.1 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
bleach 1.5.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
bokeh 0.12.5 py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
boto 2.46.1 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
bottleneck 1.2.1 np112py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
cairo 1.14.8 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
cdecimal 2.3 py27_2 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
certifi 2016.2.28 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
cffi 1.10.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
chardet 3.0.3 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
click 6.7 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
cloudpickle 0.2.2 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
clyent 1.2.2 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
colorama 0.3.9 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
configparser 3.5.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
contextlib2 0.5.5 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
cryptography 1.8.1 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
curl 7.52.1 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
cycler 0.10.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
cython 0.25.2 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
cytoolz 0.8.2 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
dask 0.14.3 py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
datashape 0.5.4 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
dbus 1.10.10 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
decorator 4.0.11 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
distributed 1.16.3 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
docutils 0.13.1 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
entrypoints 0.2.2 py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
enum34 1.1.6 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
et_xmlfile 1.0.1 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
expat 2.1.0 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
fastcache 1.0.2 py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
flask 0.12.2 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
flask-cors 3.0.2 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
fontconfig 2.12.1 3 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
freetype 2.5.5 2 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
funcsigs 1.0.2 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
functools32 3.2.3.2 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
futures 3.1.1 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
get_terminal_size 1.0.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
gevent 1.2.1 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
glib 2.50.2 1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
greenlet 0.4.12 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
grin 1.2.1 py27_3 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
gst-plugins-base 1.8.0 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
gstreamer 1.8.0 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
h5py 2.7.0 np112py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
harfbuzz 0.9.39 2 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
hdf5 1.8.17 1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
heapdict 1.0.0 py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
html5lib 0.999 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
icu 54.1 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
idna 2.5 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
imagesize 0.7.1 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
ipaddress 1.0.18 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
ipykernel 4.6.1 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
ipython 5.3.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
ipython_genutils 0.2.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
ipywidgets 6.0.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
isort 4.2.5 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
itsdangerous 0.24 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
jbig 2.1 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
jdcal 1.3 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
jedi 0.10.2 py27_2 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
jinja2 2.9.6 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
jpeg 9b 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
jsonschema 2.6.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
jupyter 1.0.0 py27_3 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
jupyter_client 5.0.1 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
jupyter_console 5.1.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
jupyter_core 4.3.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
lazy-object-proxy 1.2.2 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
libffi 3.2.1 1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
libgcc 4.8.5 2 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
libgfortran 3.0.0 1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
libiconv 1.14 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
libpng 1.6.27 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
libsodium 1.0.10 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
libtiff 4.0.6 3 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
libtool 2.4.2 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
libxcb 1.12 1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
libxml2 2.9.4 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
libxslt 1.1.29 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
llvmlite 0.18.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
locket 0.2.0 py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
lxml 3.7.3 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
markupsafe 0.23 py27_2 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
matplotlib 2.0.2 np112py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
mistune 0.7.4 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
mkl 2017.0.1 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
mkl-service 1.1.2 py27_3 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
mpmath 0.19 py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
msgpack-python 0.4.8 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
multipledispatch 0.4.9 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
navigator-updater 0.1.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
nbconvert 5.1.1 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
nbformat 4.3.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
networkx 1.11 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
nltk 3.2.3 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
nose 1.3.7 py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
notebook 5.0.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
numba 0.33.0 np112py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
numexpr 2.6.2 np112py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
numpy 1.12.1 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
numpydoc 0.6.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
odo 0.5.0 py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
olefile 0.44 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
openpyxl 2.4.7 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
openssl 1.0.2l 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
packaging 16.8 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pandas 0.20.1 np112py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pandocfilters 1.4.1 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pango 1.40.3 1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
partd 0.3.8 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
path.py 10.3.1 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pathlib2 2.2.1 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
patsy 0.4.1 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pcre 8.39 1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pep8 1.7.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pexpect 4.2.1 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pickleshare 0.7.4 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pillow 4.1.1 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pip 9.0.1 py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pixman 0.34.0 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
ply 3.10 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
prompt_toolkit 1.0.14 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
psutil 5.2.2 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
ptyprocess 0.5.1 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
py 1.4.33 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pycairo 1.10.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pycosat 0.6.2 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pycparser 2.17 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pycrypto 2.6.1 py27_6 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pycurl 7.43.0 py27_2 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pyflakes 1.5.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pygments 2.2.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pylint 1.6.4 py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pyodbc 4.0.16 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pyopenssl 17.0.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pyparsing 2.1.4 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pyqt 5.6.0 py27_2 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pytables 3.3.0 np112py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pytest 3.0.7 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
python 2.7.13 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
python-dateutil 2.6.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pytz 2017.2 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pywavelets 0.5.2 np112py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pyyaml 3.12 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
pyzmq 16.0.2 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
qt 5.6.2 4 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
qtawesome 0.4.4 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
qtconsole 4.3.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
qtpy 1.2.1 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
readline 6.2 2 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
requests 2.14.2 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
rope 0.9.4 py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
ruamel_yaml 0.11.14 py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
scandir 1.5 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
scikit-image 0.13.0 np112py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
scikit-learn 0.18.1 np112py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
scipy 0.19.0 np112py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
seaborn 0.7.1 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
setuptools 27.2.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
simplegeneric 0.8.1 py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
singledispatch 3.4.0.3 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
sip 4.18 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
six 1.10.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
snowballstemmer 1.2.1 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
sortedcollections 0.5.3 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
sortedcontainers 1.5.7 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
sphinx 1.5.6 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
spyder 3.1.4 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
sqlalchemy 1.1.9 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
sqlite 3.13.0 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
ssl_match_hostname 3.4.0.2 py27_1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
statsmodels 0.8.0 np112py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
subprocess32 3.2.7 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
sympy 1.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
tblib 1.3.2 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
terminado 0.6 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
testpath 0.3 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
tk 8.5.18 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
toolz 0.8.2 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
tornado 4.5.1 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
traitlets 4.3.2 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
unicodecsv 0.14.1 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
unixodbc 2.3.4 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
wcwidth 0.1.7 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
werkzeug 0.12.2 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
wheel 0.29.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
widgetsnbextension 2.0.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
wrapt 1.10.10 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
xlrd 1.0.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
xlsxwriter 0.9.6 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
xlwt 1.2.0 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
xz 5.2.2 1 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
yaml 0.1.6 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
zeromq 4.1.5 0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
zict 0.1.2 py27_0 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
zlib 1.2.8 3 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
(py27) [email protected]:~$ ^C
(py27) [email protected]:~$
上一篇: Kubernetes (一)Pod
下一篇: 配置Python3.6环境