Python
I mostly write python scripts.
Poetry
Poetry is a great tool for creating and managing my environments.
It allows me to setup a projects in seconds.
curl -sSL https://install.python-poetry.org | python3 -
Placed inside my project's directory I can just run the following.
poetry init
# spam enter multiple times
poetry add <whatever libs I need>
poetry run python main.py
links :