anaconda 与 jupyter 的安装详细(win-64)

 

(这里记录一下我安装 anaconda 与 jupyter 的过程,和我一样两个一起装的可以参考下)

1、windows64 对应anaconda版本下载地址:https://www.anaconda.com/products/individual

2、下载完,双击exe,一路next下来

3、在环境变量path中添加:C:\Users\Administrator\anaconda3\Scripts  (我个人的安装地址)

4、检查anaconda安装结果:

conda --version

conda list

成功安装后显示如下:(需要注意的是,如果安装前就打开了cmd,要在安装后重新打开一个新的cmd窗口进行测试)

anaconda 与 jupyter 的安装详细(win-64)_第1张图片

5、根据jupyter官网说明 https://jupyter.org/install.html,我选择通过anaconda来安装jupyter:(总共三条命令,因为一开始执行时出错了,所以后面多写了一点问题解决步骤)

conda install -c conda-forge jupyterlab

anaconda 与 jupyter 的安装详细(win-64)_第2张图片

这里出现了一个 error,根据网友 https://blog.csdn.net/t20134297/article/details/104691192/ 的提示,

把路径“Anaconda3/Library/bin ”下面的文件复制到路径“Anaconda3/DLLs”下 :

libcrypto-1_1-x64.dll

libssl-1_1-x64.dll

然后运行就可以了,具体如下图:

anaconda 与 jupyter 的安装详细(win-64)_第3张图片

 

进一步安装:

conda install -c conda-forge notebook

anaconda 与 jupyter 的安装详细(win-64)_第4张图片

继续执行:

conda install -c conda-forge voila

(内容太多,cmd翻页了,没法截图了,但是内容差不错,都是 done,表示安装完成了)

6、打开jupyter

执行:

jupyter notebook

又出问题了:

anaconda 与 jupyter 的安装详细(win-64)_第5张图片 根据网友 https://blog.csdn.net/weixin_44135282/article/details/90521839 的提示,

在环境变量中添加:

C:\Users\Administrator\anaconda3\Library\bin

C:\Users\Administrator\anaconda3

然后在重新打开cmd窗口重新运行:

anaconda 与 jupyter 的安装详细(win-64)_第6张图片 

7、成功:网页自动打开到这里

anaconda 与 jupyter 的安装详细(win-64)_第7张图片 

你可能感兴趣的:(日常)