Explore >> Select a destination


You are here

vxlabs.com
| | www.laac.dev
7.4 parsecs away

Travel
| | Choosing which tools to use in your Python development environment might be the toughest part of Python programming. The Python tooling ecosystem continues to evolve rapidly. I'll share what I need my tools to do, what tools are a part of my development environment, and why I use each one.
| | www.jennapederson.com
5.3 parsecs away

Travel
| | Here's how you can manage Python versions and packages with `uv`.
| | janakiev.com
7.9 parsecs away

Travel
| | Are you working with Jupyter Notebook and Python? Do you also want to benefit from virtual environments? In this tutorial you will see how to do just that with Anaconda or Virtualenv/venv.
| | techtldr.com
42.9 parsecs away

Travel
| There are two philosophies when it comes to package installation, global first and local first. Global meaning all applications that rely on a certain package have access to the same copy of the library that was installed once. Local means that each project has its own folder of dependencies installed specifically for this project and [...]