Skip to content

Instantly share code, notes, and snippets.

@dcinzona
Last active October 4, 2025 19:04
Show Gist options
  • Select an option

  • Save dcinzona/29dcb005cee3df3316ada9996ac9367b to your computer and use it in GitHub Desktop.

Select an option

Save dcinzona/29dcb005cee3df3316ada9996ac9367b to your computer and use it in GitHub Desktop.
VSCode on Windwos with WSL + Python + Jupyter
# 💻 Commands
# Install WSL with Ubuntu
wsl --install -d Ubuntu
wsl --set-default Ubuntu
# Update Ubuntu
sudo apt update && sudo apt upgrade -y
# Download and install Anaconda
cd ~
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash ~/Miniconda3-latest-Linux-x86_64.sh
# Activate conda (used this manually)
~/miniconda3/bin/conda init bash
source ~/.bashrc
# Use base environment (no new env created)
conda activate base
# Install Jupyter in base
conda install notebook ipykernel -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment