文章目录
环境安装
Anocoda安装
相关链接
Anoconda的下载链接如下:
Anoconda Download
Anoconda的各版本安装方式如下:
Anoconda Installation
Anoconda的文档链接如下:
Anoconda Documentation
本文安装环境为macOS 10.13.6,安装版本为Anaconda2-2018.12-MacOSX-x86_64.sh
安装步骤1
-
下载对应版本。本文所下版本为Anaconda2-2018.12-MacOSX-x86_64.sh
-
打开command,使用如下命令执行下载文件
bash ~/Downloads/Anaconda2-2018.12-MacOSX-x86_64.sh
- 安装中,会弹出"In order to continue the installation process, please review the license agreement.(为继续安装,请阅读许可证协议)",按Enter阅览许可协议
- 滑到协议末尾,输入yes同意许可
- 安装中,会弹出选择安装位置,选择默认位置,默认位置为*/home/userName/anaconda*
- 安装中,会弹出*"Do you wish the installer to prepend the Anaconda install location to PATH in your /home/userName/.bash_profile ?(是否希望安装器将Anaconda的安装目录添加到.bash_profile中)"建议选择yes*
- 安装结束
- 安装器会询问你是否安装VS Code,选择yes或是no
在命令行中执行:
conda info --env
输出如下:
# conda environments:
#
base * /Users/userName/anaconda3
则代表安装成功,如输出command not found
,则可能是环境配置有误,打开~/.bash_profile,加入export PATH="/<path to anaconda>/bin:$PATH"
Jupyter使用
conda默认安装了jupyter,在命令行中输入如下命令:
conda list
列出其中所有的安装包,以下是列出的jupyter安装包
jupyter 1.0.0 py37_7
jupyter_client 5.2.4 py37_0
jupyter_console 6.0.0 py37_0
jupyter_core 4.4.0 py37_0
jupyterlab 0.35.3 py37_0
jupyterlab_server 0.2.0 py37_0
输入
jupyter notebook
则在网页上运行了notebook,运行效果如下:
点击New → \rightarrow → python3,则编译器运行成功,效果如下:
至此,我们便可以编译python的代码了
第一句代码
在jupyter中输入框中输入如下命令:
print('hello jupyter')
按shift+enter键运行代码,输出如下: