Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Access a saved ipython notebook on an external drive (mac)

I'm trying to access an ipython notebook that was saved to an external HD. Is this possible?

Specifically, I saved an ipython notebook to a dropbox folder (locally synced) on one computer. I am now trying to open that ipython notebook on another computer that syncs to the same dropbox account -- only computer b's dropbox folder is on an external HD.

This seems so basic, but I've looked everywhere for an answer on this and am afraid I'm missing something more fundamental here.

like image 974
RJH2 Avatar asked Dec 25 '22 03:12

RJH2


1 Answers

Create a symbolic link to your external drive; store this link somewhere on the main drive.

For example, my Dropbox folder is on an external flash card, so I used a terminal session to do the following:

$ ln -s /Volumes/SDCARD/Dropbox ~/Documents/DB

(Screenshots here)

like image 97
Jon Shadforth Avatar answered Jan 17 '23 10:01

Jon Shadforth