Coding Jupyter Notebooks for Spring 2024 Iteration of CS 170
- Install Anaconda following the instructions here.
- Open up your terminal.
- Create a conda environment (with python 3.8):
conda create -n cs170 python=3.8
- Activate the environment:
conda activate cs170
- Install pip:
conda install pip
- Install jupyter:
conda install jupyter
- Clone this repository somewhere in your device:
git clone https://github.com/Berkeley-CS170/cs170-sp24-coding
- Once you're done, deactivate the conda environment to return to your default environment:
conda deactivate
- Yay you're done with local setup!
- Make sure that you've completed the initial local setup above.
- Open up your terminal
cd
into your specific coding homework directory, e.g.:
cd <wherever your homework lives>/cs170-sp24-coding/hw02
- Activate the
cs170
conda environment you created during initial local setup:
conda activate cs170
- Install all python package requirements for that homework:
pip install -r requirements.txt
If there isn't a requirements.txt
file in the coding homework directory, you can skip this step.
- Start up a local jupyter notebook server by running
jupyter notebook
- Navigate to the jupyter notebook for the assignment and complete it! Good luck :D
- Yay you finished your coding homework for the week! Once you're done, submit your completed
.ipynb
file to Gradescope, and if you want, deactivate the conda environment to return to your default environment:
conda deactivate