Anaconda的安装
参考地址:
http://t.csdnimg.cn/mUmSp
安装完毕,可以卸载电脑中的其他python版本,在控制面板中进行卸载。
在命令行指令中输入
python
Python 3.8.3 (default, Jul 2 2020, 17:30:36) [MSC v.1916 64 bit (AMD64)] :: Anaconda, Inc. on win32
Type "help", "copyright", "credits" or "license" for more information.
可以看到有Anaconda的版本,说明安装成功
运行jupyter
命令行输入
jupyter notebook
运行后打开任一URL
To access the notebook, open this file in a browser:
file:///C:/Users/root/AppData/Roaming/jupyter/runtime/nbserver-6304-open.html
Or copy and paste one of these URLs:
http://localhost:8888/?token=66adb5627de276b95768a45e16adbc2fdeaf80f4bae0a282
or http://127.0.0.1:8888/?token=66adb5627de276b95768a45e16adbc2fdeaf80f4bae0a282
其网站中的内容为你在哪个路径下运行该命令,那么网站中的内容就是该目录下的内容,因此,需要在你指定的目录下运行上述命令。
New-Python3后会创建一个未命令的以.ipynb为后缀的文件,在功能区其实跟很多编辑器如idea,pychram类似。值得一提的是,该编辑器可以使用tab键进行补写代码