ℹ️ If you would like to know more about this workshop, please email us.
- Download the Miniconda installer for Windows from the official website
- Double-click the downloaded
.exe
file - Follow the installation prompts:
- Click "Next"
- Accept the license terms
- Select "Just Me" for installation scope
- Choose an installation directory (default is recommended)
- In "Advanced Options", check "Add Miniconda3 to my PATH environment variable"
- Click "Install"
- Download the Miniconda installer for your system from the official website
- Open Terminal
- Navigate to the directory containing the downloaded file
- Make the installer executable:
chmod +x Miniconda3-latest-*-x86_64.sh
- Run the installer:
./Miniconda3-latest-*-x86_64.sh
- Follow the prompts:
- Press Enter to review the license agreement
- Type "yes" to accept the license terms
- Confirm the installation location (default is recommended)
- Type "yes" to initialize Miniconda3
-
Open a new terminal (Windows: Anaconda Prompt, Unix: Terminal)
-
Create a new environment named 'humble-data':
conda create -n humble-data python=3.8
-
Activate the environment:
- Windows:
conda activate humble-data
- Unix:
conda activate humble-data
- Windows:
-
Install required packages:
pip install -r requirements.txt
-
Start Jupyter Notebook:
jupyter notebook
This will open Jupyter Notebook in your default web browser. You can now navigate to and open any of the workshop notebooks.
-
Go to https://githubtocolab.com/HumbleData/beginners-data-workshop
-
If you haven’t logged in to your Google account, you will be asked to do so
-
At the beginning of the notebook, add a cell by clicking the
button at the top
-
After that copy and paste the following codes in the new cell:
!git clone https://github.com/HumbleData/beginners-data-workshop.git !cp -r beginners-data-workshop/media/ . !cp -r beginners-data-workshop/data/ . !cp -r beginners-data-workshop/solutions/ . !rm -r beginners-data-workshop/
-
Run the cell by clicking the play button on the left of the cell or press shift + enter on your keyboard
-
You may get this warning when running the first code block. Click “Run anyway” when asked (because you trust us not giving you malicious code).
-
When the code is finished (it may take a moment), you should see that three folders are added to your files. Consider the preparation work done and you may now start using the notebook.
-
Note that when you disconnect from the notebook (or leave it inactive for a long time) the files we just download with the code and your work is not saved.
Consider downloading or saving your work in drive before you leave this notebook. You can do so by clicking on the “File” button at the bottom.
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.