系统环境:
  • OS:deepin 15.11(均为系统默认配置)
  • Anaconda Distribution 64位(x86)安装程序(517 MB)

Jupyter 官方提供三种安装方式:conda、pip、python 能力有限使用 pip、python 的方式没有安装成功,尝试使用 Anaconda Distribution 库的 conda 命令在 deepin系统中实现自动化快速部署 jupyter notebook。

Jupyter 官方安装文档连接

conda 官方下载地址 建议使用第三方工具下载很快然后导入到系统

conda 官方安装文档


安装过程:

1、安装 Anaconda Distribution

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、没有执行自动初始化处理,重新执行 bash 提示目录存在

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/

deepin 15.11 成功安装 jupyter notebook的更多相关文章

  1. linux安装python3 ,安装IPython ,安装jupyter notebook

    安装python3    下载到 /opt/中 1.下载python3源码,选择3.6.7因为ipython依赖于>3.6的python环境wget https://www.python.org ...

  2. windows安装Jupyter Notebook

    这是我自定义的Python 的安装目录 (D:\SoftWare\Python\Python36\Scripts) 1.Jupyter Notebook 和 pip 为了更加方便地写 Python 代 ...

  3. Docker 安装jupyter notebook

    1. 利用image运行一个container sudo docker run -it --net=host tingting --net=host:让container可以上网,安装原来的sudo ...

  4. ubuntu14.04安装jupyter notebook

    1.使用pip安装Jupyter notebook: pip install jupyter notebook 2.创建Jupyter默认配置文件: jupyter notebook --genera ...

  5. Python---virtualenv + Tensorflow + 安装jupyter notebook

    一.ubuntu系统下安装完caffe后,安装 jupyter notebook. 在终端中执行,安装指令: sudo pip install jupyter 安装完成后运行 notebook : j ...

  6. python如何安装Jupyter notebook

    一,安装Jupyter notebook 环境:win10,python3.7 两种安装方式,这里只讲pip安装 pip install jupyter notebook 二,启动Jupyter no ...

  7. 环境配置 | 安装Jupyter Notebook及jupyter_contrib_nbextensions库实现代码自动补全

    一.Jupyter Notebook的安装与启动 安装Jupyter Notebook pip3 install jupyter 启动 jupyter notebook 输入命令后会自动弹出浏览器窗口 ...

  8. Centos7安装jupyter notebook

    安装python3 查看当前python版本 [root@iz1i4qd6oynml0z /]# python -V Python 2.7.5 安装python3以及检查python3的版本 yum ...

  9. deepin的15.11中安装nvidia最新435版本驱动

    换了一个电脑,跟随潮流,CPU是不带集显的,操作系统从原来的硬盘一通搬过来的 其中Deepin Linux更新到15.11. 显卡是2060的,在Deepin中目前只集成了390的nvidia驱动,无 ...

随机推荐

  1. 推荐:经典SQL语句大全

    一.基础 .说明:备份sql server--- 创建 备份数据的 device USE master EXEC sp_addumpdevice 'disk', 'testBack', 'c:/mss ...

  2. 201809-2买菜 ccf

    只得了90分,很奇怪,有大佬指导一下吗 #include<stdio.h> int main() { ,sum=; scanf("%d",&n); *n],b[ ...

  3. 小白学python-day06-

    今天是day06,以下是学习内容总结: 但行努力,莫问前程. --------------------------------------------------------------------- ...

  4. python中的*args和** kwargs区别

    写了几个月的oython了总感觉除了if else for while什么都不太会,看了架构师的代码参数传递总是使用*args,**kwargs,一直搞不太明白,只是模仿着用,最近有时间想系统的学习一 ...

  5. PyCharm 配置 Git 教程

    之前给大家介绍了 Git 安装及使用指南,今天再给大家介绍一下在 PyCharm 中使用 Git. 1 打开 File -> Settings -> Version Control -&g ...

  6. spring @Required注解

    以下内容引用自http://wiki.jikexueyuan.com/project/spring/annotation-based-configuration/spring-required-ann ...

  7. Java学习-内存划分及内存的调用关系

    一.JAVA内存划分 JAVA的内存可以划分为五个部分:堆.栈.方法区.本地方法区和寄存器. 堆(Heap):凡是new出来的东西都在堆中 如: integer = new Integer(2) // ...

  8. 机房ping监控 smokeping+prometheus+grafana(续) 自动获取各省省会可用IP

    一.前言 1.之前的文章中介绍了如何使用smokeping监控全国各省的网络情况:https://www.cnblogs.com/MrVolleyball/p/10062231.html 2.由于之前 ...

  9. JAVA常用的集合类

    package com.xian.test; import java.util.ArrayList; import java.util.Enumeration; import java.util.Ha ...

  10. dubbo异常处理

    dubbo异常处理 我们的项目使用了dubbo进行不同系统之间的调用. 每个项目都有一个全局的异常处理,对于业务异常,我们会抛出自定义的业务异常(继承RuntimeException). 全局的异常处 ...