下载并安装Anaconda: 访问Anaconda官网下载适用于Mac的Anaconda安装包,并按照提示完成安装。 打开Anaconda Navigator: 安装完成后,打开Anaconda Navigator,你可以在其中找到Jupyter Notebook的启动选项。 通过终端启动Jupyter Notebook: 如果你更喜欢使用终端,可以打开终端并输入以下命令启动Jupyter Notebook: bash jupyter...
1.1 先更新一下pip,然后安装Jupyter Notebook pip3 install --upgrade pip pip3 install jupyter 1.2 配置环境变量 安装完Jupyter之后,在终端输入jupyter notebook可能会遇到jupyter command not found的情况。这是因为Jupyter没有被添加到环境变量当中,解决办法是: 1.2.1 找到Jupyter的安装位置 通常是/Users/[username...
直接到官网 https://www.anaconda.com/download/#macos 下载安装文件,一路next即可。安装完成后,一般会在 ~/anaconda/bin 下生成很多可执行的命令。 二、启动jupyter-notebook 进入anaconda根目录,终端下输入: bin/jupyter-notebook 就能启动jupyter-notebook,如下图: 点击右上角的New->Python3 就能开始耍了, 三...
1.先升级了pip安装工具:sudo python -m pip install --upgrade --force pip 2.安装setuptools 工具:sudo pip3 install setuptools==33.1.1 3.安装 Python-dateutil:sudo pip3 install python-dateutil==2.2 4.安装six:sudo pip3 install --ignore-installed six 5.安装jupyter:sudo pip3 install jupyter 启...
1安装使用步骤 打开终端,在环境中(这里是在base环境下),使用pip安装jupyter: pip3 install jupyter 安装完成之后,输入一下命令即可在浏览器打开jupyter notebook: jupyter notebook 2修改jupyter默认的打开目录 首先在终端中输入以下命令,获取juypter notebook配置文件(该命令告诉我们配置文件的位置) ...
1.安装anaconda 去anaconda官网下载pkg包,正常安装即可 2.pip安装jupyter notebook (1) 安装jupyter pip3 install jupyter 或者用国内镜像安装 pip install-i https://pypi.tuna.tsinghua.edu.cn/simple jupyter (2) 启动jupyter # 启动jupyter jupyter notebook ...
一、安装 pip安装 pip3 install jupyter notebook 查看安装结果:为了获取安装目录为后面这是环境变量准备 pip3 show jupyter 运行结果 Name: jupyter Version: 1.0.0 Summary: Jupyter metapackage. Install all the Jupyter components in one go. Home-page:http://jupyter.org ...
2.安装setuptools 工具:sudo pip install setuptools==33.1.1 3.安装 Python-dateutil:sudo pip install python-dateutil==2.2 4.安装six:sudo pip install --ignore-installed six 5.安装jupyter:sudo install jupyter 启动命令:直接在终端输入jupyter notebook ...
一、Windows命令行安装 1.新建Jupyter Notebook的安装文件夹,并打开命令行弹窗 2.命令行下安装Jupyter Notebook 二、Mac命令行安装 1.Mac命令行的打开 a.键盘打开命令行 b.菜单栏打开命令行 2.Mac命令行的打开 Attation! 好的,到这jupyter的安装结束,赶快进入编程之旅!