在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:\python\jupyter-notebook‘
Mac:
c.NotebookApp.notebook_dir = ‘/Users/sxyxhj/Desktop/python/jupyter-notebook‘
也可以在jupyter_notebook_config.py文件中更改Jupyter的端口号
启动jupyter notebook.
jupyter notebook
如果要关闭直接Ctrl+C关闭服务,关闭之前记得保存哦。
相关推荐
巩庆奎 2020-07-21
猪猪侠喜欢躲猫猫 2020-08-17
chuckchen 2020-10-31
Will0 2020-10-12
Dreamhome 2020-10-09
xirongxudlut 2020-09-28
星辰大海的路上 2020-09-13
chaochao 2020-08-31
快递小可 2020-08-16
shengge0 2020-07-26
张文倩数据库学生 2020-07-19
xirongxudlut 2020-07-18
Ericbig 2020-07-18
kyelu 2020-07-09
GuoSir 2020-06-28
chaigang 2020-06-27
pythonxuexi 2020-06-25
joynet00 2020-06-21