diff --git a/docs/developer_setup.md b/docs/developer_setup.md index f726364c01..d3a2e2102b 100644 --- a/docs/developer_setup.md +++ b/docs/developer_setup.md @@ -2,7 +2,7 @@ ## Set up the Python virtual environment -First, create a Python virtual environment with Python version >= 3.8 and activate it. +First, create a Python virtual environment with Python version >= 3.9 and activate it. Using [Virtualenv](https://docs.python.org/3/library/venv.html#creating-virtual-environments): @@ -18,7 +18,7 @@ Using [Anaconda](https://conda.io/projects/conda/en/latest/user-guide/tasks/mana # Create a virtual environment. # Only run this the first time. - conda create -n crfm-helm python=3.8 pip + conda create -n crfm-helm python=3.9 pip # Activate the virtual environment. conda activate crfm-helm diff --git a/docs/installation.md b/docs/installation.md index 17ee3e4653..21e1d3358c 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -2,7 +2,7 @@ ## Create a virtual environment -It is recommended to install HELM into a virtual environment with Python version 3.8 to avoid dependency conflicts. HELM requires Python version 3.8. To create, a Python virtual environment with Python version >= 3.8 and activate it, follow the instructions below. +It is recommended to install HELM into a virtual environment with Python version >=3.9 to avoid dependency conflicts. HELM requires Python >=3.9. To create, a Python virtual environment and activate it, follow the instructions below. Using [Virtualenv](https://docs.python.org/3/library/venv.html#creating-virtual-environments): @@ -10,7 +10,7 @@ Using [Virtualenv](https://docs.python.org/3/library/venv.html#creating-virtual- # Create a virtual environment. # Only run this the first time. python3 -m pip install virtualenv -python3 -m virtualenv -p python3.8 helm-venv +python3 -m virtualenv -p python3.9 helm-venv # Activate the virtual environment. source helm-venv/bin/activate @@ -21,7 +21,7 @@ Using [Anaconda](https://conda.io/projects/conda/en/latest/user-guide/tasks/mana ``` # Create a virtual environment. # Only run this the first time. -conda create -n crfm-helm python=3.8 pip +conda create -n crfm-helm python=3.9 pip # Activate the virtual environment. conda activate crfm-helm