Last active
April 23, 2025 18:36
-
-
Save cooneycw/5530221187b3040699910908251769a2 to your computer and use it in GitHub Desktop.
Install python:
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
| # 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