linux 安装 Anaconda 及 jupyter notebook

一、安装Anaconda

1、下载(直接到清华镜像下载)

下载链接:https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/,选择合适的版本(Anaconda3-4.3.1-Linux-x86.sh)。

2、安装Anaconda

bash Anaconda3-4.3.1-Linux-x86.sh

安装完成之后要重启终端,anaconda才能生效。(一定要重启哦)

在安装的过程中,会问你安装路径,直接回车默认就可以了。有个地方问你是否将anaconda安装路径加入到环境变量(.bashrc)中,输入yes,默认的是no

注意:我在安装过程中出现了time out的状况,在重新执行下bash命令试试。我是重复3次成功的。

二、安装jupyter notebook

一般Anaconda就带有Jupyter,可以使用 Anaconda Navigator 打开 Jupyter,方法如下:

在终端上,输入命令anaconda-navigator,Navigator GUI 将初始化并显示出来。

在 Navigator 的 Home 选项卡上,在右侧的 Applications 窗格中,滚动到 Jupyter Notebook 磁贴,然后单击 Install 按钮以安装 Jupyter Notebook。

linux 安装 Anaconda 及 jupyter notebook_第1张图片

安装好后就启动一个新的浏览器窗口(或一个新选项卡),显示Notebook Dashboard。

linux 安装 Anaconda 及 jupyter notebook_第2张图片

三、终端启动 jupyter notebook方法

除了上面二所说的启动jupyter notebook方法,还可以在终端中键入并运行jupyter notebook。

终端中会打印有关笔记本服务器的一些信息,包括可能在您的默认浏览器上打开或复制并粘贴到浏览器上的 Web 应用程序的 URL(默认情况下,http://localhost:8888) .如果启动成功,Jupyter Dashboard 将在浏览器中打开

linux 安装 Anaconda 及 jupyter notebook_第3张图片

四、jupyter notebook代码自动补全

步骤1:打开命令行,切换到需要安装的环境,输入以下命令:

pip install jupyter_contrib_nbextensions

步骤2:下载成功后,再输入:

jupyter contrib nbextension install --user

步骤3:然后启动jupyter,就可以看见Nbextensions,勾选Hinterland:

linux 安装 Anaconda 及 jupyter notebook_第4张图片

步骤4:重启jupyter notebook,就可以了

参考:https://devpress.csdn.net/linux/62ee9a847e668234661827c4.html

https://blog.csdn.net/m0_45958387/article/details/125836163

你可能感兴趣的:(机器学习)