/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

earthly.dev
| | www.cybershu.eu
2.0 parsecs away

Travel
| | If you work with Python, you probably need to activate a virtual environment to manage dependencies. Using a virtualenv requires activation each time you wan...
| | www.ethanrosenthal.com
2.0 parsecs away

Travel
| | I make Python packages for everything. Big projects obviously get a package, but so does every tiny analysis. Spinning up a quick jupyter notebook to check something out? Build a package first. Oh yeah, and every package gets its own virtual environment. Let's back up a little bit so that I can tell you why I do this. After that, I'll show you how I do this. Notably, my workflow is set up to make it simple to stay consistent.
| | www.rasulkireev.com
1.5 parsecs away

Travel
| | How to set up a virtual environment for your Django Project, or any other Python project, for that matter.
| | techtldr.com
14.3 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 [...]