Hacker News new | ask | show | jobs
by kristianp 358 days ago
Is the environment located in the .venv folder under the same directory as the script?
1 comments

The venv is created and then discarded once the script finishes execution. This is well suited to one-off scripts like what is demonstrated in the article.

In a larger project you can manage venvs like this using `uv venv`, where you end up with a familiar .venv folder.