Mac搭建jupyter环境

1. 安装HomeBrew

  HomeBrew或者Brew是OS X 不可或缺的套件管理器,用于安装或者卸载mac应用程序非常方便有效,如果没有安装,则可以打开Mac终端执行下面代码进行安装

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

2.通过HomeBrew安装python

1)安装python2

brew install python2

2)安装python3

brew install python3

  安装python的过程中会自动安装pip,如果系统仅安装了一种python环境,则用pip安装python库时,直接用pip install pyton库名即可,但是如果安装了python2和python3,则直接使用pip install pyton库名可能是安装python2对应的python库,也可能是python3对应的python库,所以可能达不到自己想要的效果,此时如果想安装python2对应的库,则执行pip2 install pyton库名,python3则执行pip3 install pyton库名,例如此处要安装jupyter,python2环境执行

pip2 install jupyter

python3环境执行

pip3 install jupyter

我在安装好jupyter环境之后在终端执行jupyter notebook命令时报错,提示找不到jupyter命令,报错信息类似Zsh: command not found: jupyter,网上查资料之后多安装了一个jupyter相关的库,问题解决,安装jupyterlab
python2环境

pip2 install jupyterlab

python3环境

pip3 install jupyterlab

注意 我的python环境是python3,对于python2环境安装之后是否有相同问题未进行研究,无论是python2和python3环境如果安装好jupyter后未报错,则可以不安装jupyterlab,如果报错可以尝试安装jupyterlab,看是否能解决自己的问题,如果问题依然不能解决,参考github

3.jupyter notebook启动

终端执行如下代码启动jupyter notebook,然后会使用自己默认的浏览器弹出jupyter界面

jupyter notebook

4.jupyter界面美化

参考: Mac下jupyter环境的搭建

你可能感兴趣的:(Mac搭建jupyter环境)