-
@mathsppblog @frank_pado Yeah, I understand. If the package installed by
pip
also includes any other executable, venv will still provide wrappers around that. For instance, uvicorn installs command-line tools to serve up apps. You can still run either with: venv/bin/uvicorn app:main(.)app --reload -
@mathsppblog @frank_pado Here's me running the
rich
command-line tool that gets installed under venv/bin. I'm not importing it and it's only installed within the env... -
@mathsppblog @frank_pado Here's an example of me running
uvicorn
from venv/bin without explicitly activating the env.