Quick beginner-friendly setup for getting python running in Windows to prevent headaches down the line. I prefer conda over other methods in Windows for fast data science, standalone tasks. Very very useful to be able to set up this stuff quick on a new PC and keep it modular without crowding the PC.
## Installation
Miniconda Prompt
## Set Python Version
```
conda env list
conda create -n myenv python=3.14
conda activate myenv
```
## Usage
```
python --version
python -m pip install jupyter
python -m pip install seaborn
jupyter notebook
```
---
Easy Multi-Version Python Virtual Environment Setup with Conda (Windows). Thank you for watching!
-Kevin