Note: You may be in the habit of logging into stu using VS Code to complete your coding work for CS courses. That won’t always work for this class because we will often be working with data visualizations that only run properly on your local computer. You should configure a local Python environment with the necessary libraries.
Install Miniconda using the official installer.
Download the file env445.yaml to a convenient location.
Open the Anaconda Prompt from the Start Menu.
Navigate to the folder where you saved the YAML file, for example:
cd path\to\download\folder
Create the environment:
-f env445.yaml conda env create
Make sure the Windows Terminal and Powershell are properly configured for Conda:
conda init powershell cmd.exe
To use VS Code:
Ctrl+Shift+P
)....\miniconda3\envs\env445\python.exe
).Install Miniconda for macOS using the official installer.
Initialize Conda for your shell (one-time):
Open Terminal, then run:
conda init zsh # Use 'bash' instead if you're using Bash
Close Terminal, then reopen it so the change takes effect.
Download the file env445.yaml to a convenient location.
In Terminal, navigate to the folder where you saved the YAML file, for example:
cd ~/Downloads
Create the environment:
conda env create -f env445.yaml
To use VS Code:
⇧⌘P
)./Users/<your-username>/miniconda3/envs/env445/bin/python
).