Skip to content

Instantly share code, notes, and snippets.

@cooneycw
Last active April 23, 2025 18:36
Show Gist options
  • Select an option

  • Save cooneycw/5530221187b3040699910908251769a2 to your computer and use it in GitHub Desktop.

Select an option

Save cooneycw/5530221187b3040699910908251769a2 to your computer and use it in GitHub Desktop.
Install python:
# install uv tool in windows
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
# install python using uv
uv python install
# install spyder (editor) using uv
uv pip install spyder
# create a working environment (python packages)
uv venv my_data_project
# activate the working enviroment
my_data_project/Scripts/Activate
# add the pandas package to our environment
uv pip install pandas
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment