Use default system python to create a venv:
python -m venv --clear .venv
.venv/bin/python --version
If you're on Ubuntu you might need to install the venv package for your Python version e.g. 3.10-venv
:
sudo apt install python3.10-venv
You can then use the new version to create your venv:
python3.10 -m venv --clear .venv
.venv/bin/python3.10 --version