How to start Jupyter notebook on another drive in Mac OS Anaconda Navigator?

冷暖自知 提交于 2021-01-28 06:24:08

问题


I like the idea of using Anaconda Navigator to manage environments. On my Mac, the Anaconda Navigator is installed on the main drive. I would like to put working notebooks on another hard drive. However, Jupyter notebook cannot navigate to another hard drive.

How do I configure the system so that I can work on the files on another hard drive and keep the Anaconda on the main drive?


回答1:


After some research, I think the best way is to use Anaconda Navigator to configure packages, but start the Jupyter notebook in terminal. One can navigate to the desired drive first by the commands:

ls /Volumes
cd /Volumes/MyNewDrive

The start the notebook by:

Jupyter notebook


来源:https://stackoverflow.com/questions/51802061/how-to-start-jupyter-notebook-on-another-drive-in-mac-os-anaconda-navigator

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!