欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

安装jupyter

程序员文章站 2022-05-29 09:02:57
...

创建一个python3的环境,为啥呢?因为我想用python3来写我的脚本。

conda create -n python3  python=3.7
# Package Plan ##

  environment location: /home1/name/miniconda2/envs/python3

  added / updated specs: 
    - python=3.7


The following packages will be downloaded:

    package                    |            build
    ---------------------------|-----------------
    zlib-1.2.11                |                0         109 KB  https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
    pip-18.1                   |           py37_0         1.7 MB  defaults
    ca-certificates-2018.12.5  |                0         123 KB  defaults
    libffi-3.2.1               |                1          38 KB  https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
    python-3.7.2               |       h0371630_0        36.4 MB  defaults
    libedit-3.1.20181209       |       hc058e9b_0         188 KB  defaults
    setuptools-40.6.3          |           py37_0         617 KB  defaults
    xz-5.2.4                   |       h14c3975_4         366 KB  defaults
    wheel-0.32.3               |           py37_0          35 KB  defaults
    certifi-2018.11.29         |           py37_0         146 KB  defaults
    sqlite-3.26.0              |       h7b6447c_0         1.9 MB  defaults
    ncurses-6.1                |       he6710b0_1         958 KB  defaults
    openssl-1.1.1a             |       h7b6447c_0         5.0 MB  defaults
    ------------------------------------------------------------
                                           Total:        47.6 MB

The following NEW packages will be INSTALLED:

    ca-certificates: 2018.12.5-0             defaults                                               
    certifi:         2018.11.29-py37_0       defaults                                               
    libedit:         3.1.20181209-hc058e9b_0 defaults                                               
    libffi:          3.2.1-1                 https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
    libgcc-ng:       8.2.0-hdf63c60_1        defaults                                               
    libstdcxx-ng:    8.2.0-hdf63c60_1        defaults                                               
    ncurses:         6.1-he6710b0_1          defaults                                               
    openssl:         1.1.1a-h7b6447c_0       defaults                                               
    pip:             18.1-py37_0             defaults                                               
    python:          3.7.2-h0371630_0        defaults                                               
    readline:        7.0-h7b6447c_5          defaults                                               
    setuptools:      40.6.3-py37_0           defaults                                               
    sqlite:          3.26.0-h7b6447c_0       defaults                                               
    tk:              8.6.8-hbc83047_0        defaults                                               
    wheel:           0.32.3-py37_0           defaults                                               
    xz:              5.2.4-h14c3975_4        defaults                                               
    zlib:            1.2.11-0                https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free

Proceed ([y]/n)? y


Downloading and Extracting Packages
zlib-1.2.11          | 109 KB    | ############################################################################## | 100% 
pip-18.1             | 1.7 MB    | ############################################################################## | 100% 
ca-certificates-2018 | 123 KB    | ############################################################################## | 100% 
libffi-3.2.1         | 38 KB     | ############################################################################## | 100% 
python-3.7.2         | 36.4 MB   | ############################################################################## | 100% 
libedit-3.1.20181209 | 188 KB    | ############################################################################## | 100% 
setuptools-40.6.3    | 617 KB    | ############################################################################## | 100% 
xz-5.2.4             | 366 KB    | ############################################################################## | 100% 
wheel-0.32.3         | 35 KB     | ############################################################################## | 100% 
certifi-2018.11.29   | 146 KB    | ############################################################################## | 100% 
sqlite-3.26.0        | 1.9 MB    | ############################################################################## | 100% 
ncurses-6.1          | 958 KB    | ############################################################################## | 100% 
openssl-1.1.1a       | 5.0 MB    | ############################################################################## | 100% 
Preparing transaction: done
Verifying transaction: done
Executing transaction: done
#
# To activate this environment, use:
# > source activate python3
#
# To deactivate an active environment, use:
# > source deactivate

然后安装Jupyter

[ ~]$ source activate python3
(python3) [~]$ python3 -m pip install --upgrade pip
Requirement already up-to-date: pip in ./miniconda2/envs/python3/lib/python3.7/site-packages (18.1)