Skip to content

Instantly share code, notes, and snippets.

@matthewfeickert
Last active March 4, 2024 06:24
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matthewfeickert/8b6a632579a439ed3580ce4b36b011af to your computer and use it in GitHub Desktop.
Save matthewfeickert/8b6a632579a439ed3580ce4b36b011af to your computer and use it in GitHub Desktop.
Motivation for using Python virtual environments for easy sharing

Understanding Python virtual environments

High Level Introductions

Articles

GitHub Issues Explaining What To Do / Not To Do

Code With Anthony videos

Code examples

Understanding non-system Python installations

You should treat the version of Python that comes installed with your operating system as being off-limits to you to use — it is the operating system's and only the operating system's. This "system Python" or "platform Python" exists for the OS to run programs it controls and all user code and programs should be run with a different Python runtime that you install by yourself.

Articles

Understanding Packaging and Package Maintenance

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment