在Window和Mac 下安装Python3 和Jupyter notebook
2021-04-25 11:29
标签:工作 版本 代码 win rop save 系统环境 配置文件 not Python官网地址:https://www.python.org/downloads/windows/ 下载之后安装勾选PATH,自动添加到系统环境变量。 Python官网地址:https://www.python.org/downloads/release/python-383/ 下载之后直接安装: 由于Python2已经默认安装在系统中,所以我们需要配置环境变量: 在文件中添加刚刚安装的Python版本信息: 修改之后执行这个命令使上面的更改生效: 查看版本: Jupyter notebook 是一个基于网页的交互式应用程序,我们可以在网页上直接编写Python代码和运行代码,也可以编写说明文档。 安装命令: 初始化配置: 执行之后会在的user目录下生成.jupyter目录,并且会生成配置文件:jupyter_notebook_config.py 修改配置文件jupyter_notebook_config.py, 设置成你自己的工作目录。 Windows: Mac: 也可以在jupyter_notebook_config.py文件中更改Jupyter的端口号 启动jupyter notebook. 如果要关闭直接Ctrl+C关闭服务,关闭之前记得保存哦。 在Window和Mac 下安装Python3 和Jupyter notebook 标签:工作 版本 代码 win rop save 系统环境 配置文件 not 原文地址:https://www.cnblogs.com/sxyxhj/p/13258249.html下载和安装Python3:
Windows:
Mac(10.15.1):
vim? ~/.bash_profile
# Setting PATH for Python 3.8
# The original version is saved in .bash_profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/3.8/bin:${PATH}"
export PATH
alias python="/Library/Frameworks/Python.framework/Versions/3.8/bin/python3.8"
alias pip="/Library/Frameworks/Python.framework/Versions/3.8/bin/pip3.8"
source? ~/.bash_profile
192:~ $ python -V
Python 3.8.3
192:~ $ pip -V
pip 19.2.3 from /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/pip (python 3.8)
安装Jupyter notebook.
pip install jupyter
jupyter notebook --generate-config
c.NotebookApp.notebook_dir = ‘D:\python\jupyter-notebook‘
c.NotebookApp.notebook_dir = ‘/Users/sxyxhj/Desktop/python/jupyter-notebook‘
jupyter notebook
文章标题:在Window和Mac 下安装Python3 和Jupyter notebook
文章链接:http://soscw.com/index.php/essay/79378.html