ARTICLE AD BOX
I created a virtual environment using:
python -m venv venvMy system Python version is:
python --version Python 3.11.1But after activating the virtual environment, I get:
(venv) python --version Python 3.10.12Why is the virtual environment using a different Python version than the system Python?
How can I make sure the virtual environment uses a specific Python version?
OS: macOS / Linux
Python installed via system package manager
