Welcome to the Data Science Prep Course repository! 🧑💻
Your first step in this journey is to carefully read the steps in this tutorial. You'll learn:
- How to set up your environment;
- The weekly workflow to follow during the Prep Course.
Follow these steps to make sure your machine is ready by April 4, 2022.
-
1.1 (a) Windows 10/11 Setup
1.1 (b) Ubuntu Setup
1.1 (c) MacOS Setup
1.1 (d) MacOS M1 Setup
1.3 Setup your Workspace Repository
1.4 Clone the ds-prep-course-2022 repository
Here you'll setup and learn about all the tools you'll be using during the academy. Don't worry if you can't figure out what some of the commands you will use do. Anything that is important will be explained in more detail during the course.
This section deals with setting up Windows Subsystem for Linux (WSL) on Windows 10/11. If you are using Ubuntu, skip this section (go to Ubuntu Setup). If you are using MacOS, skip this section (go to MacOS Setup).
Step 1: Follow this guide to setup WSL on Windows 10/11.
Why do I need to install WSL?
Windows Subsystem for Linux (WSL) enables you to run Linux command line inside Windows. All of our setup instructions are created for Mac OS/Ubuntu, so we won't be able to provide support on how to do it on Windows.
Step 2: Open a terminal (remember this!!) and run the following command:
sudo apt update && sudo apt upgrade && sudo apt install gitStep 3: Open a terminal (remember this!!) and check if you already have python3.7 by usind the command below. If your version is Python 3.7.x (x = any number), you can skip to step 4, otherwise continue with step 3.1 and 3.2
python3.7 --versionStep 3.1: Run the following commands to setup Python 3.7 (if you get an error with this command, check this ):
sudo add-apt-repository ppa:deadsnakes/ppaStep 3.2: Run the following commands to install Python 3.7
sudo apt update && sudo apt install python3.7 -yStep 4 Run the following command to get pip and venv:
sudo apt update && sudo apt upgrade && sudo apt install python3-pip python3.7-venv -yWhy do we install these?
We'll be using
pipwhich is the reference Python package manager. You should always use a virtual environment to install python packages. We'll usevenvto set them up.
This sections deals with installing some necessary packages.
Step 2: Open a terminal and run the following command:
sudo apt update && sudo apt upgrade && sudo apt install gitStep 3: Open a terminal and check what version of Python you have by using the command below. If your version is Python 3.7.x (x = any number), you can skip to step 4, otherwise continue with step 3.1 and 3.2
python3.7 --versionStep 3.1: Run the following commands to setup Python 3.7 (if you get an error with this command, check this ):
sudo add-apt-repository ppa:deadsnakes/ppaStep 3.2: Run the following commands to install Python 3.7
sudo apt update && sudo apt install python3.7 -yStep 4 Run the following command to get pip and venv:
sudo apt update && sudo apt upgrade && sudo apt install python3-pip python3.7-venv -yWhy do we install these?
We'll be using
pipwhich is the reference Python package manager. You should always use a virtual environment to install python packages. We'll usevenvto set them up.
Some of the steps in the following sections will require Homebrew for MacOS. Homebrew will make it easier to install software that we'll use later on.
Step 1: To open the terminal, choose one:
-
In Finder
, open the /Applications/Utilities folder, then double-click Terminal. -
By pressing cmd + space then type
terminaland press enter.The terminal should now be open:
Step 2: To install Homebrew for MacOS, copy and paste the following line in the terminal:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"Step 2.1: Sometimes it's necessary to install xcode command line utils. To do so, do the following command before installing homebrew:
xcode-select --installYou may be prompted to install the Command Line Developers Tools. Confirm and, once it finishes, continue installing Homebrew by pressing enter again.
Step 3: open a terminal and run the following command:
brew update --verboseStep 4: then run the following command:
brew install gitStep 5: then run the following command:
brew install python@3.7Step 6: then run the following command:
brew link python@3.7So you got the new M1 and you're supper happy with how fast it is.. Unfortunately dealing with apple silicon requires a little get around. You no longer have a intel chip and most things are available for intel. But don't worry, we'll be able to get there in the end.
Step 1: To open the terminal, choose one:
-
In Finder
, open the /Applications/Utilities folder, then double-click Terminal. -
By pressing cmd + space then type
terminaland press enter.The terminal should now be open:
Step 1.1: To use intel-based software, you'll need Rosetta2. Most of you should already have it installed for varied reasons. If you don't simply run the following line in the terminal:
softwareupdate --install-rosettaThis will launch the rosetta installer and you’ll have to agree to a license agreement.
Step 2: To install Homebrew x86 version, aka ibrew for MacOS, copy and paste the following line in the terminal:
arch -x86_64 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"Step 2.1: Sometimes it's necessary to install xcode command line utils. To do so, do the following command before installing homebrew:
xcode-select --installStep 3: Add an alias with ibrew to your $PATH
Step 3.1: Open .zshrc with nano to edit the file
nano ~/.zshrcStep 3.2: Add the alias for ibrew at the end of the file
alias ibrew="arch -x86_64 /usr/local/bin/brew"Step 3.3: Save the alterations to .zshrc with Ctrl + Ctrl, and enter Y when asked to save alterations.
Step 3.4: Activate the alterations done to .zshrc
source ~/.zshrcStep 4: Install python 3.7 with ibrew
ibrew install python@3.7Step 5: Add python 3.7 to $PATH
export PATH="/usr/local/opt/python@3.7/bin:$PATH" >> ~/.zshrcStep 6 Re-activate the alterations done to .zshrc
source ~/.zshrcGit is a distributed version-control system for tracking changes in source code. A repository is where code lives, and the code from the prep course will live at ds-prep-course-2022 repository (basically where you are right now, reading this). All the learning materials and exercises will be released (made available) on this repository.
Step 1: Sign up for a GitHub account and follow the instructions.
Step 2: Open a terminal. Configure your email and username by running the 3 commands below. (replace mig.dias.1212@gmail.com below with the same email you used for github and buedaswag with your GitHub username).
git config --global user.email "mig.dias.1212@gmail.com"
git config --global user.username "buedaswag"
git config --global user.name "Bueda Swag"The workspace directory/repository is where you will place everything you are working on, solve exercises, make changes to files, etc.
Step 1: Log into GitHub
Step 2: In the upper-right corner of the page, click the "+" button and select New repository:
Step 3: Create a new private repository called ds-prep-workspace.
-
You need to explicitly select Private - This is your private work environment.
-
Initialize with a README.
-
Add a Python
.gitignore.
You can also check Creating a new repository on GitHub for help.
Step 1: Open a terminal (or use one you've already opened)
Step 2: Create a folder named projects by using the mkdir command:
mkdir ~/projectsStep 3: Enter the folder by using the cd command:
cd ~/projectsStep 4: You can now clone the ds-prep-workspace repository you created on GitHub.
Replace <username> below with your github username, removing the brackets < >, and run the command:
git clone https://github.com/<username>/ds-prep-workspace.gitStep 5: You'll be asked for your git username. Type it and press enter. Then you'll be asked for your git password. Type it and press enter
You should now have a local copy of your ds-prep-workspace in your ~/projects/ds-prep-workspace folder.
Note: If you already have a Github account and you happen to have 2FA enabled, you need an extra step and simply inputting your password will not work. In this case, you can go to https://github.com/settings/tokens, click on Generate new token. You can give it a name in the note field, such as ldsa-token. Then select repo in the scopes and click on Generate token. You will be prompted with a code that you should save (you will not be able to see it again after leaving that window). Now use this code instead of your password when cloning your repo.
Remember that by August 13, 2021, the username+password authentication will no longer be supported.
Let's clone the ds-prep-course-2022 repository, just like we did for ds-prep-workspace. This is where all of the learning materials will be made available, as the academy progresses.
Step 1: Open a terminal (or use one you've already opened) and enter the projects folder:
cd ~/projectsStep 2: Clone the Prep Course repository (it's the same that contains the README you're reading right now!):
git clone https://github.com/LDSSA/ds-prep-course-2022.gitBefore you work on a learning unit, you'll need to activate a virtual environment. By using a virtual environment, you ensure that you have a stable and compatible set of Python packages. On the Prep Course we will use the same environment throughout. As a data scientist though, you'll probably create different environments for different purposes or projects.
Step 1: Start by ensuring pip, setuptools, and wheel are up to date:
python3.7 -m pip install --user --upgrade pip setuptools wheelStep 2: Create a virtual environment with the name prep-venv:
python3.7 -m venv ~/.virtualenvs/prep-venvStep 3: Activate the environment
source ~/.virtualenvs/prep-venv/bin/activateAfter you activate your virtual environment you should see at the leftmost of your command line the name of your virtual environment surrounded by parenthesis, like this:
(prep-venv) mig@macbook-pro %
Step 4: Last but not least, don't forget to update pip.
pip install -U pipFinally, test the workflow (next section) on "Week 00" before April 4. This folder is used to give instructors guidelines to produce the learning units. We are also using it to ensure that you are able to run and submit a learning unit.
Each week a new folder is released on ds-prep-course-2022 repository. On week 1 (April 4 - April 10), the folder released will be "Week 01". On week 02, it will be called "Week 02", and so on. These folders contain the learning units you'll be working on. The releases will be announced on Slack, on the #announcements channel.
This section only needs to be done ONCE for each week. It is about getting the materials, copying them to your local workspace and adding new packages to your virtual environment.
-
Run the following on a terminal:
cd ~/projects/ds-prep-course-2022/
git pull
⚠️ Before running the command below: - If"Week <week number>"already exists on the destination folder, it will be replaced, so make sure you do this once and before starting to work on the exercises.cp -r ~/projects/ds-prep-course-2022/"Week <week number>" ~/projects/ds-prep-workspace/
- If you're curious about how you could this using your OS GUI check this guide
-
Activate the
prep-venvenvironment you created on the Initial Setup:source ~/.virtualenvs/prep-venv/bin/activate
-
Install the python packages from
requirements.txtfor each learning unit (there are multiple learning units (SLU's) in a Week!):pip install -r ~/projects/ds-prep-workspace/"Week <week number>"/"<SLU name>"/requirements.txt
Example: For Week 00 you'd do:
pip install -r ~/projects/ds-prep-workspace/"Week 00"/"SLU00 - Jupyter Notebook"/requirements.txt
Each time you want to work on the materials that you already copied to your workspace, follow these steps.
Step 1 - Enter the ds-prep-workspace directory:
cd ~/projects/ds-prep-workspaceStep 2 - Activate your virtual environment:
source ~/.virtualenvs/prep-venv/bin/activateStep 3 - Open the Jupyter Notebook application by running:
jupyter notebookIf you are running Windows 10/11, run the following instead:
jupyter notebook --NotebookApp.use_redirect_file=False-
When you run the
jupyter notebookcommand, you should see something similar to this in your terminal:
and your browser should pop up with Jupyter open. However, if this does not happen, you can simply copy the link you see on your terminal (the one that starts by http://localhost) and past it in your browser's address bar.Note: If you see some scary looking messages, don't worry, you can just ignore them.
Step 4 - Work on the learning unit
All learning units come as a set of Jupyter Notebooks. These are documents that can contain text, images and live code that you can run interactively.
- Learning Notebook: Make sure you open and go through the Learning Notebook(s) first.
⚠️ Important: ALWAYS work on the files on yourds-prep-workspacerepository. NEVER work on files inside in theds-prep-course-2022repository!
-
Exercise Notebook:
This is a notebook with exercises you will work on. For example, on the sample Learning Unit we have:

-
Follow the instructions provided in the notebook. You'll see cells with the exercises and cells for you to write solutions.
-
Once you've solved all of the exercises we recommend following this simple checklist to avoid unexpected surprises: 1. Save the notebook (again) 2. Run "Restart & Run All"
 3. At this point the notebook should have run without any error messages showing up.  4. Close the browser and the terminal.
-
Step 5 - Grading the Exercise Notebook
Get your slackid, then open a terminal and run the following:
cd ~/projects/ds-prep-workspace/"Week <week number>"/"<SLU name>"
python submit.py --learning_unit <learning unit number> --slackid <your slackid>Example: For Week 00 you'd do:
cd ~/projects/ds-prep-workspace/"Week 00"/"SLU00 - Jupyter Notebook"
python submit.py --learning_unit 0 --slackid <your slackid>Then you can look for your submission here
Step 6 - Commit and push
Open a terminal and run the following:
cd ~/projects/ds-prep-workspacegit add .git commit -m "Exercises for Week <week number>"git pushYou'll be asked for your password - enter it and press enter. Type your git password and press enter.
- Note: You'll be learning all about
git add,git commitandgit pushduring the Prep Course. For now, just know that these are the necessary steps for you to save your work to your remote repositoryds-prep-workspace.
As much as we try and have processes in place to prevent errors and bugs in the learning units some make it through to you.
If the problem is not in the exercise notebook you can just pull the new version from the ds-prep-course-2022 repo and replace the file on your ds-prep-workspace (steps 1 and 2 from last section).
If the correction is in the exercise notebook, however, you can't just replace the file because your work is there and you'll lose it!
When a new version of the exercise notebook is released (and announced) you will have to merge the work you've already did into the new version of the notebook.
At the moment our suggestion to merge the changes is:
- Rename the old version;
- Copy the new exercise notebook over;
- Open both and copy paste your solutions to the new notebook.
We understand it's not ideal and are working on improving this workflow.
During the Prep Course you will surely run into problems and have questions about the materials. Please refer to this wiki page on how to ask for help!
You can contact us on Slack. Here's how to post questions on Slack:
- Use the channel of the Week you're asking about;
- Check if your question was already asked before posting;
- If you want to report bugs on the materials, open an issue on ds-prep-course-2022;
- If you want to give feedback post it in the #feedback channel;
- Anything not related with the learning materials should go to the #random channel. No exceptions;
- Always answer in a thread;
- Use Direct Messages (DMs) to instructors only if you need to share your solutions or a personal concern.
Alternatively, open an issue.
- When I open Windows Explorer through Ubuntu, it goes to a different folder than in the guide
- Ubuntu on Windows 10 high CPU usage, crashes
- When I pull from the
ds prep course-2022repository, I get an error - When I try to open
jupyter notebook, I get an error - When I use the
cpcommand the>sign appears and the command does not execute - When setting up python 3.7 i get an error
- Nothing happens when I type my password
- I still have a NotImplemented error
Please make sure:
- you are running the command
explorer.exe .including the dot at the end. - you are running Windows 10 version
1909or newer.
- Make sure you are running Windows 10 version
1909or newer. - Then, try following these steps
If you get an error like the following when pulling:
error: Your local changes to the following files would be overwritten by merge:
<some files>
Please commit your changes or stash them before you merge.
Aborting
what git is telling you is that changes were made by you to the files on the ~/projects/ds-prep-course-2022 folder, and is not pulling the changes made by the instructors because they would override the changes that you made there.
To fix this do the following:
-
Make sure that any change you made to the files on
~/projects/ds-prep-course-2022(that you don't want to lose) is saved in your~/projects/ds-prep-workspacerepository (refer to Updates to Learning Units on how to do this), and if you don't want to keep the changes you made to these files, just continue on to the next step; -
Go to the
~/projects/ds-prep-course-2022folder and run:cd ~/projects/ds-prep-course-2022 git stash
-
Now you can pull from the
ds-prep-course-2022repository:git pull
If you get this error when trying to open a notebook:
migs-MBP% jupyter notebook
zsh: command not found: jupytermake sure to activate your virtual environment before opening jupyter notebook:
source ~/.virtualenvs/prep-venv/bin/activatecp -r ~/projects/ds-prep-course-2022/“Week 00" ds-prep-workspace
>Make sure to use this type of quotes " and not these ones “.
When I run this command:
sudo add-apt-repository ppa:deadsnakes/ppaI get this error:
W: GPG error: http://apt.postgresql.org/pub/repos/apt focal-pgdg InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 7FCC7D46ACCC4CF8Solution: Take the id in front of NO_PUBKEY (in my case its 7FCC7D46ACCC4CF8) and run the following command:
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 7FCC7D46ACCC4CF8In step two it asks me for the computer password. However, I am not being able to write anything
Solution: When you write your password you might not get any visual feedback and that's okay! Write it as normal and hit enter when you're done!
I've completed the exercise in the Exercise Notebook but when I run the cell I get a NotImplementedError.
Solution:
The raise NotImplementedError() are added to the exercise cell as a placeholder for where you're supposed to add your solution/code. It is meant to be removed!
Coming soon.
🎁🎬 Check the tutorial videos if you have any doubts after following this tutorial. These videos were made for the Prep Course of year 2020, so there may be some differences.

