Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update installation instructions to py311 #198

Merged
merged 2 commits into from
Jun 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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