15.11 성공적으로 설치 jupyter 노트북 deepin

시스템 환경 :
  • OS : deepin 15.11 (모두 기본 구성)
  • 아나콘다 배포 64 비트 (86) 설정 (5백17메가바이트)

파이썬 방법은 deepin 시스템의 신속한 배포 jupyter 노트북을 자동화하는 아나콘다 배포 라이브러리 CONDA 명령을 사용하려고 성공적으로 설치되지 않으며, CONDA, 주사위, 주사위를 사용하는 파이썬 제한 기능 : Jupyter 관계자는 세 가지 설치 방법을 제공합니다.

연결 Jupyter 공식 설치 설명서

CONDA 공식 다운로드 시스템에 타사 도구를 사용하는 것이 좋습니다 후 빠르게 다운로드

CONDA 공식 설치 설명서


설치 프로세스 :

1, 설치 아나콘다 배포

sudo wget https://repo.anaconda.com/archive/Anaconda3-2019.07-Linux-x86_64.sh

bash Anaconda3-2019.07-Linux-x86_64.sh
python@python-PC:~/Desktop$ bash Anaconda3-2019.07-Linux-x86_64.sh

Welcome to Anaconda3 2019.07

In order to continue the installation process, please review the license
agreement.
Please, press ENTER to continue
>>> 回车
>>> 省略大段说明
>>> 回车
cryptography
    A Python library which exposes cryptographic recipes and primitives.

直到这里提示输入 yes

Do you accept the license terms? [yes|no]
[no] >>> yes
Anaconda3 will now be installed into this location:
/home/python/anaconda3

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

[/home/python/anaconda3] >>> 回车
PREFIX=/home/python/anaconda3

2, 설치 프로세스가 완료 될 때까지 기다립니다. (컴퓨터를 두지 마십시오, 제한 시간은 초기화 옵션 NO를 기본값으로 사용합니다)

  zlib               pkgs/main/linux-64::zlib-1.2.11-h7b6447c_3
  zstd               pkgs/main/linux-64::zstd-1.3.7-h0b5b093_0


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

no change     /home/python/anaconda3/condabin/conda
no change     /home/python/anaconda3/bin/conda
no change     /home/python/anaconda3/bin/conda-env
no change     /home/python/anaconda3/bin/activate
no change     /home/python/anaconda3/bin/deactivate
no change     /home/python/anaconda3/etc/profile.d/conda.sh
no change     /home/python/anaconda3/etc/fish/conf.d/conda.fish
no change     /home/python/anaconda3/shell/condabin/Conda.psm1
no change     /home/python/anaconda3/shell/condabin/conda-hook.ps1
no change     /home/python/anaconda3/lib/python3.7/site-packages/xontrib/conda.xsh
no change     /home/python/anaconda3/etc/profile.d/conda.csh
no change     /home/python/.bashrc
No action taken.
If you'd prefer that conda's base environment not be activated on startup, 
   set the auto_activate_base parameter to false: 

conda config --set auto_activate_base false

Thank you for installing Anaconda3!

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

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

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

3, 효과는 즉시 .bashrc에

source ~/.bashrc

4 실행 CONDA 설치 jupyter

conda install jupyter

5, 테스트

jupyter --version
jupyter notebook -h

CONDA 설치 참조

문제

1, 아니 자동 초기화 과정은, 배쉬 프롬프트 디렉토리가 존재 재 - 실행되지 있습니다

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

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

[/home/python/anaconda3] >>> 

ERROR: File or directory already exists: '/home/python/anaconda3'
If you want to update an existing installation, use the -u option.


解决办法删除已安装的目录:

rm -fr /home/python/anaconda3/

추천

출처www.cnblogs.com/kuikuixiaoxiangri/p/11427126.html