Repository for CDP Mapping Systems summer 2024 course
- Syllabus: this is the source of truth for the course. It contains the schedule, learning objectives, and other important information.
- Assignment Descriptions: this folder contains the descriptions for all assignments in the course.
- Assignments: You will submit your assignments here, based on the assignment descriptions.
- Tutorial Notebooks: this folder contains the tutorial notebooks for the course. These are the notebooks that we will work through in class.
- Install VSCode
- Join course Github page from the invitation email I send. Fork the repository to your account and clone it to your local machine.
- Create a new Python environment. I recommend using Conda for this, but you can also use virtualenv. This will protect our system Python installation from any changes we make.
- If you're using Conda, you can create a new environment with the following command:
conda create -n [pick-a-name] python=3.12
- If you're using Conda, you can create a new environment with the following command:
- In VSCode, install
Black Formatter
. Using a consistent formatter will help us keep our code clean and readable and reduce minor changes in our commits. We will useBlack
as our default formatter