在Window和Mac 下安装Python3 和Jupyter notebook
Posted sxyxhj
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Window和Mac 下安装Python3 和Jupyter notebook相关的知识,希望对你有一定的参考价值。
下载和安装Python3:
Windows:
Python官网地址:https://www.python.org/downloads/windows/
下载之后安装勾选PATH,自动添加到系统环境变量。
Mac(10.15.1):
Python官网地址:https://www.python.org/downloads/release/python-383/
下载之后直接安装:
由于Python2已经默认安装在系统中,所以我们需要配置环境变量:
vim? ~/.bash_profile
在文件中添加刚刚安装的Python版本信息:
# 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.
Jupyter notebook 是一个基于网页的交互式应用程序,我们可以在网页上直接编写Python代码和运行代码,也可以编写说明文档。
安装命令:
pip install jupyter
初始化配置:
jupyter notebook --generate-config
执行之后会在的user目录下生成.jupyter目录,并且会生成配置文件:jupyter_notebook_config.py
修改配置文件jupyter_notebook_config.py, 设置成你自己的工作目录。
Windows:
c.NotebookApp.notebook_dir = ‘D:pythonjupyter-notebook‘
Mac:
c.NotebookApp.notebook_dir = ‘/Users/sxyxhj/Desktop/python/jupyter-notebook‘
也可以在jupyter_notebook_config.py文件中更改Jupyter的端口号
启动jupyter notebook.
jupyter notebook
如果要关闭直接Ctrl+C关闭服务,关闭之前记得保存哦。
以上是关于在Window和Mac 下安装Python3 和Jupyter notebook的主要内容,如果未能解决你的问题,请参考以下文章
Mac系统下安装ipython分别支持python2和python3