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

Python3.8环境配置Anaconda3+jupter notebook配置设置

程序员文章站 2022-07-14 21:14:47
...

第一部分安装Anaconda

1.Anaconda下载
官方下载地址:https://www.anaconda.com/products/individual
目前最新是python3.8,默认为3.8,下载64bit版本(根据自己电脑来,一般现在都是64位)
Python3.8环境配置Anaconda3+jupter notebook配置设置
2.Anaconda安装
直接双击或者右键管理员运行
Python3.8环境配置Anaconda3+jupter notebook配置设置
Python3.8环境配置Anaconda3+jupter notebook配置设置
next,默认就行,all Users(方便电脑有多用户使用)选Just Me有一个问题要注意,如果账户用户名是中文,之后安装路径包含非英文字符会影响程序运行

Python3.8环境配置Anaconda3+jupter notebook配置设置
自己选路径
Python3.8环境配置Anaconda3+jupter notebook配置设置
环境变量PATH一定要勾起
Python3.8环境配置Anaconda3+jupter notebook配置设置
anaconda安装完毕
Python3.8环境配置Anaconda3+jupter notebook配置设置
之前勾选了PATH,这些系统环境变量应该就装上了,没勾选可以自行添加
Python3.8环境配置Anaconda3+jupter notebook配置设置
在powershell中看看conda版本和python
Python3.8环境配置Anaconda3+jupter notebook配置设置

第二部分安装jupyter notebook

1.运行
安装anaconda时自带了jupyter notebook
在终端中运行jupyter notebook
Python3.8环境配置Anaconda3+jupter notebook配置设置
发现并没有自动打开浏览器
可以选择将URLs复制到浏览器运行
Python3.8环境配置Anaconda3+jupter notebook配置设置
成功运行
2.更改jupyter notebook配置文件
自定义用户设置,可以自动弹出想要打开的浏览器,以及notebook的文件路径
在命令行输入 jupyter notebook --generate-config,按下回车,出现一个.py格式的路径
Python3.8环境配置Anaconda3+jupter notebook配置设置
在对应系统的默认路径下打开jupyter_notebook_config.py文件,里面的语句默认都呈注释状态,搜索browser ,定位到如下语句:

#c.NotebookApp.browser = ''

改成如下(这里以新版微软edge浏览器为例,自行选择浏览器右键属性找运行exe路径)

import webbrowser
webbrowser.register("msedge", None, webbrowser.GenericBrowser(u"C:\\Program Files (x86)\\Microsoft\\Edge\\Application\\msedge.exe"))
c.NotebookApp.browser = u'msedge'

默认工作目录设置
打开jupyter_notebook_config.py文件通过搜索关键词:c.NotebookApp.notebook_dir,修改如下:

c.NotebookApp.notebook_dir = 'G:\\code\\python_work'

终端运行

jupyter notebook

Python3.8环境配置Anaconda3+jupter notebook配置设置
jupyter notebook配置完毕