1. Start Up Console
To begin the set-up, start up the console on Mac, WSL, Google Cloud, or Savio.
Mac
The following instructions start up the Terminal and navigate to a working directory ([working-directory]
) that is assumed to exist on your machine at the path [your/file/path]
. You can create the file path using your typical Mac file navigation.
- Open a Terminal window by searching for it in the Finder.
- Navigate to your working directory by typing:
cd [your/file/path]
WSL
The following instructions start up the Ubuntu console and navigate to a working directory ([working-directory]
) path that is assumed to exist on your machine at the path [your/file/path]
. You can create the file path using your typical windows file navigation.
-
Launch Ubuntu and log in, if needed.
- Ubuntu will use your native Windows file system, but it may be blocked at first. Run the following commands in your home directory:
sudo umount /mnt/c sudo mount -t drives C: /mnt/c -o metadata
- Navigate to your C-drive and to the file path you have created as your working directory:
cd ../../mnt/c/users/[your_name]/[your/file/path]
- Update the privileges of the working directory.
cd .. chmod 777 [working-directory] cd [working-directory]
Google Cloud
The following instructions assume that the model should be copied into your home folder on your Google Cloud Console.
- On the Compute Engine tab of the Google Cloud console, click the “SSH” button on your VM instance. This should pop up an SSH-in-browser window.
Savio
…