This session will introduce you to the fundamentals of data science, with a focus on Python. We will cover the Python data science stack, essential tools and platforms, software setup, semester overview, and Python 101.
This session sets the stage for your data science journey:
Python Data Science Stack: Dive into Python’s core data science libraries and frameworks. We’ve got you covered!
Ecosystem Deep Dive: Familiarize yourself with essential tools and platforms, such as Github, UCloud, Google Colab, and Jupyter. These will be integral to your studies and projects.
Software Setup: We’ll guide you through installing the crucial software. And don’t worry, our Teaching Assistants are here to assist with any challenges.
Semester Overview: Get a glimpse of what the upcoming weeks hold for you.
Python 101: We’ll ensure everyone is up to speed with Python basics.
How to build a development environment using Colab, Google Drive, GitHub, and Kaggle!
🚀 Notebook: Python 101
This tutorial provides step-by-step instructions on how to install Visual Studio Code and Git, and how to use them to clone and push to a GitHub repository. The instructions cover both macOS and Windows.
.zip
file and extract VS Code.Visual Studio Code.app
to the Applications
folder, making it available in the Launchpad..exe
file and follow the installation prompts.4.2.1. Check if Homebrew is installed:
brew --version
4.2.2. Install Homebrew (if not installed):
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
4.2.3. Install Git using Homebrew:
brew install git
4.2.4. Verify the installation:
git --version
.exe
file and follow the setup instructions.Open a terminal (macOS) or command prompt/Git Bash (Windows) and set your user name and email address with the following commands:
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"
Command Palette
Git: Clone
in the Command Palette and select it.Enter
.Select Repository Location
.Open
....
button in the Source Control sidebar, selecting Push
from the dropdown menu.Codespaces is a cloud-hosted development environment provided by GitHub, allowing you to code directly within your repository without setting up a local environment.
Code
dropdown button near the top-right corner.Create codespace on main
button. This will initiate a new Codespace environment based on the main
branch of your repository.