- Go to the Official Anaconda Website and click the 'Download' button.
- Press the 'Download' button under the 'Python 3.7 version' in Bold to download the graphical installer for your OS.
- After the download has finished, open (double-click) the installer to begin installing the Anaconda Distribution
- Follow the prompts on the graphical installer to completely install the Anaconda Distribution (The final page is 'Thanks for installing Anaconda3')
- Open the app called 'Anaconda Navigator' and press the 'launch' button in the 'Jupyter Notebook' box (to open Jupyter Notebook / confirm it was successfuly installed)
- Go to https://github.com/KevinMMendez/BinderTutorial_Workflow
- Press the green 'Clone or Download', and then click 'Download zip'
- Move this downloaded folder to a suitable directory (by default it is is the 'Download' folder)
- Open the Anaconda Navigator Application
- Move from the 'Home' tab to the 'Environment' tab (on the left side)
- Click import (at the bottom), which opens a box called 'Import New Enviroment'
- In 'Import New Enviroment', press the 'folder' icon and navigate to the 'environment.yml' file in the folder downloaded in step 2/3.
- Click Import and wait for the environment to install (note: may take 5-10 minutes)
- Return to the 'Home' tab
- Change 'Application on... base(root)' to 'Application on... BinderTutorial' (at the top)
- Press the 'Launch' button under the 'Jupyter Notebook' box
- Using the Notebook Dashboard, locate the downloaded folder in step 2/3 and open (double-click) on the 'Tutorial1.ipynb'.
- Open Terminal on Linux/MacOS or Command Prompt on Windows
- Enter the following into the console (one line at a time)
git clone https://github.com/KevinMMendez/BinderTutorial_Workflow
cd BinderTutorial_Workflow
conda env create -f environment.yml
source activate BinderTutorial
jupyter notebook
Note: if you recieve the following error, "fatal: destination path 'BinderTutorial_Workflow' already exists and is not an empty directory". You need to delete the 'BinderTutorial_Workflow' folder in that current directory or move to a new directory. This folder can be deleted using Terminal / Command Prompt with:
rm -rf BinderTutorial_Workflow