Installing on Windows

Atom & Sync Settings

  1. Download the Atom installer and double-click it to begin installation. Atom should open up once it’s installed.

  2. Open Atom settings by going to File > Settings (or Control + Comma).

  3. Go to Install and search for sync-settings. Click on the blue Install button in the sync-settings box.

  4. Once it’s done installing, click on the Settings button in the sync-settings box.

  5. Create a new Github personal access token. You may set the name to anything you’d like, but we recommend that you call it something descriptive, like “aguaclara-atom-configuration”.

  6. Check the “gist: Create gists” permission, then click Generate Token. Copy the generated token.

  7. In the Atom sync-settings settings, paste your generated token in Personal Access Token.

  8. Set the Gist Id to 8cb1fed2721e41873e9bcb315c804579.

  9. Restart Atom. sync-settings will do its job in the background. You can check on its progress in File > Settings > Packages.

    • If you get a dialog box saying that sync-settings is out of date, click “Restore”.

Git

  1. Download the Git installer and double-click it to begin installation.

  2. When the installer asks which text editor you would like to use with Git (the default is Vim), select Nano instead. While powerful, Vim is difficult to use and not necessary for Git.

    • Aside from this, you can just click “Next” through the entire installation.

  3. After the installation is complete, open PowerShell or Command Prompt.

  4. Run the two following commands with your name and Cornell email, carefully observing spaces and punctuation:

    • git config --global user.name "Firstname Lastname"

    • git config --global user.email "NetID@cornell.edu"

      • The quotation marks are important! For example, the command should say something like git config --global user.name "Monroe Weber-Shirk".

Anaconda & Python

  1. Download the Anaconda installer and double-click it to begin installation.

  2. When the installer displays Advanced Options, select “Add Anaconda to my PATH environment variable”.

    • Aside from this, you can just click “Next” through the entire installation.

* If the installer did not give the option to “Add Anaconda to my PATH environment variable”, follow the steps below after the installation:
  • Open Command Prompt (not PowerShell) and enter where python

  • Copy the path the terminal outputs. (This is the folder Python has been installed in.)

  • Enter the command set PATH=%PATH%;C:\path\to\python, replacing C:\path\to\python with the path you copied above.

pip Packages

  1. Open PowerShell or Command Prompt, as you did when installing Git.

  2. Run the following command, carefully observing spaces and punctuation:

    • pip install aguaclara --user
      • If you get the error bash: pip: command not found, follow the steps in the Anaconda and Python section after the asterisk.

Now, you’re ready for Installing Interactive Tutorials.