Update documentation to use the generic python3 version of venv (#21885)

This commit is contained in:
Yogotech's GITHub account 2022-03-27 08:02:43 -06:00 committed by GitHub
parent a202746670
commit 0e9cf0a64f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -71,7 +71,7 @@ Next up is to create and change to a virtual environment for Home Assistant Core
```bash ```bash
sudo -u homeassistant -H -s sudo -u homeassistant -H -s
cd /srv/homeassistant cd /srv/homeassistant
python{{site.installation.versions.python}} -m venv . python3 -m venv .
source bin/activate source bin/activate
``` ```