Skip to content

Commit 8fe8b89

Browse files
authored
Remove mention of specific Python version (#459)
As proposed by @paddyroddy in #458 (review), I think this is a good idea too 👍
1 parent fd0ce9b commit 8fe8b89

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,10 +216,10 @@ There are a variety of virtual environment management tools available for Python
216216
A Conda environment for the project can be created by running in a terminal the command
217217

218218
```
219-
conda create -y -n {project_slug} -c conda-forge python=3.12
219+
conda create -y -n {project_slug} -c conda-forge python
220220
```
221221

222-
This will create a new environment with name `{project_slug}` (which you should replace with the relevant project slug value for your project), installing Python 3.12 (the latest stable version as of the time of writing) using the package hosted on the [community driven `conda-forge` channel](https://conda-forge.org/). To make this Conda environment the current active environment run
222+
This will create a new environment with name `{project_slug}` (which you should replace with the relevant project slug value for your project), installing the latest version of Python using the package hosted on the [community driven `conda-forge` channel](https://conda-forge.org/). To make this Conda environment the current active environment run
223223

224224
```
225225
conda activate {project_slug}

0 commit comments

Comments
 (0)