Support for WI 2023 GEN559
-
Open a new terminal window (Applications->Utilities->Terminal)
-
Type the following command to change your default shell to bash:
chsh -s /bin/bash -
Open up a new terminal window. You should see your user name followed by a
$, e.g.beliveau$ -
Download the appropriate version of miniconda for your system (select the option ending in
bash: https://docs.conda.io/en/latest/miniconda.html -
Move the installer to your home directory by typing:
mv ~/Downloads/Miniconda3 <tab> .
Here, when you press thetabkey, the shell should autocomplete the full filename of the miniconda installer -
Run the installer by typing:
bash Miniconda3 <tab>
Once again, when you press thetabkey, the shell should autocomplete the full filename of the miniconda installer
Accept the license, proceed with the install in the default location, and selectYeswhen asked to allow conda to run init -
Close your terminal and open a new terminal window
-
Create a new conda enviroment named
gen559with the necessary packages by entering the following command:
conda create --name gen559 notebook pandas -
When asked to proceed, enter
y -
After insallation, activate your enviroment by typing:
conda activate gen559 -
Activate Jupyter by entering the following command:
jupyter notebook
After a brief pause, a Jupyter Notebook tab should open in your default web browser.
You can test it out by selectingNewfrom the top right corner.