Last active
October 4, 2025 19:04
-
-
Save dcinzona/29dcb005cee3df3316ada9996ac9367b to your computer and use it in GitHub Desktop.
VSCode on Windwos with WSL + Python + Jupyter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 💻 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