Skip to content

Latest commit

 

History

3 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 

Repository files navigation

CS 170 Fall 2026 Coding Notebooks

Coding Jupyter Notebooks for Fall 2026 Iteration of CS 170

There are two ways that you can access the notebook.

  1. On Datahub: click here and navigate to the corresponding folder.

  2. On Local Machine: Follow the instructions below for initial local setup.

Instructions for initial local setup

  1. Install Anaconda following the instructions here.
  2. Open up your terminal.
  3. Create a conda environment (with python 3.14):
conda create -n cs170 python=3.14

You might also need to run conda init [shell_name] with the shell you use and re-open the terminal.

  1. Activate the environment:
conda activate cs170
  1. Install pip:
conda install pip
  1. Install jupyter:
conda install jupyter
  1. Clone this repository somewhere in your device:
git clone https://github.com/Berkeley-CS170/cs170-fa26-coding
  1. Once you're done, deactivate the conda environment to return to your default environment:
conda deactivate
  1. Yay you're done with local setup!

Instructions for completing each coding homework

  1. Make sure that you've completed the initial local setup above.
  2. Open up your terminal
  3. cd into your specific coding homework directory, e.g.:
cd <wherever your homework lives>/cs170-fa26-coding/hw03
  1. Activate the cs170 conda environment you created during initial local setup:
conda activate cs170
  1. 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.

  1. Start up a local jupyter notebook server by running
jupyter notebook
  1. Navigate to the jupyter notebook for the assignment and complete it! Good luck :D
  2. Yay you finished your coding homework for the week! If you want, deactivate the conda environment to return to your default environment:
conda deactivate

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages