12
Installing gunicorn once on the OS and reuse it between venv ?
(programming.dev)
Welcome to the Python community on the programming.dev Lemmy instance!
Past
November 2023
October 2023
July 2023
August 2023
September 2023
Use pip to install pipx, use pipx to install gunicorn to make it available globally. Pipx is meant to install applications as it will install each in their own venv, whereas pip will install them in a single global env.
Makes sure gunicorn isn't installed in your venvs, so when you run them, they'll use the pipx installed one.