/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

bfontaine.net
| | www.integralist.co.uk
2.8 parsecs away

Travel
| | Introduction Virtual Environments Creating Virtual Environments Installing Python Versions Virtual Environments for multiple Pythons Shell Configuration Managing Dependencies Caching Dependencies Command Line Packages Introduction This blog post aims to demonstrate the most practical way to install multiple versions of Python, and of setting up 'virtual environments' for macOS userso We'll also dig into how to manage our project dependencies (e.g. we'll be discussing the classic Pip and requirements.txt ...
| | davidalfonso.es
2.9 parsecs away

Travel
| |
| | zignar.net
3.4 parsecs away

Travel
| | Personal weblog about programming, linux, life, the universe and everything
| | ljvmiranda.micro.blog
17.4 parsecs away

Travel
| I'm now a uv convert. I haven't really updated my Python tooling and workflow for the past two years. In fact, I've been using the same workflow ever since I started working: python -m venv venv source /venv/bin/activate # While in venv pip install -r requirements.txt But there's a lot of limitations in this workflow. For example, I'm limited by the Python version installed in my machine or it's hard to just install ad-hoc dependencies for my one-off scripts.