Skip to content

Commit

Permalink
Update installation instructions to py311 (#198)
Browse files Browse the repository at this point in the history
* Update installation instructions to py311

* Update docs/source/documentation/index.md
  • Loading branch information
adamltyson authored Jun 5, 2024
1 parent 310a69e commit e50b806
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/source/community/developers/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ will create and activate a `conda` environment with the requirements needed
for a development environment:

```sh
conda create -n brainglobe-dev -c conda-forge python=3.10 napari
conda create -n brainglobe-dev -c conda-forge python=3.11 napari
conda activate brainglobe-dev
```

Expand Down
4 changes: 2 additions & 2 deletions docs/source/documentation/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
## Installing BrainGlobe

We always recommend that you install BrainGlobe tools into a virtual environment (managed by software such as `conda` or `venv`).
Your environment should run Python 3.9 or 3.10. To specify the Python version for new conda environment, add it as a parameter on creation:
Your environment should run Python 3.10, 3.11 or 3.12. To specify the Python version for new conda environment, add it as a parameter on creation:

```bash
conda create -n brainglobe-env python=3.10
conda create -n brainglobe-env python=3.11
```

Once you have created and activated your desired environment, you can install all BrainGlobe tools using `pip`:
Expand Down
4 changes: 2 additions & 2 deletions docs/source/documentation/setting-up/conda.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,14 @@ The `(base)` is the bit that tells you that conda is set up
Open a terminal (or Anaconda Prompt) and type:

```bash
conda create --name ENV_NAME python=3.10
conda create --name ENV_NAME python=3.11
```

This will:

* Create a new conda environment (a kind of walled-off area on your computer that shouldn't affect other parts)
* Call it something, so you can reference it later (replace `ENV_NAME` with something useful)
* Install python version 3.10 into it
* Install python version 3.11 into it



Expand Down

0 comments on commit e50b806

Please sign in to comment.