Skip to content

Commit

Permalink
up py3.7 to 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
SamGuay committed Jul 24, 2024
1 parent eeb7d61 commit 9cf58f9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/get-started/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ dcm2bids.
### Python

As dcm2bids is a Python package, the first prerequisite is that Python must be
installed on the machine you will use dcm2bids. You will need **Python 3.7 or
installed on the machine you will use dcm2bids. You will need **Python 3.8 or
above** to run dcm2bids properly.

If you are unsure what version(s) of Python is available on your machine, you
Expand All @@ -129,7 +129,7 @@ line.
>>> exit()
```

If your system-wide version of Python is lower 3.7, it is okay. We will make
If your system-wide version of Python is lower 3.8, it is okay. We will make
sure to use a higher version in the isolated environment that will be created
for dcm2bids. The important part is to verify that Python is installed.

Expand Down Expand Up @@ -163,7 +163,7 @@ the next section.

We recommend to install all the dependencies at once when installing dcm2bids on
a machine or server. As mentioned above the minimal installation requires only
dcm2bids, dcm2niix and Python >= 3.7. For ease of use and to make sure we have a
dcm2bids, dcm2niix and Python >= 3.8. For ease of use and to make sure we have a
reproducible environment, we recommend to use a dedicated environment through
[conda][conda] or, for those who have it installed, [Anaconda][anaconda]. Note
that you **don't need** to use specifically them to use dcm2bids, but it will
Expand Down Expand Up @@ -260,7 +260,7 @@ name: dcm2bids
channels:
- conda-forge
dependencies:
- python>=3.7
- python>=3.8
- dcm2niix
- dcm2bids
```
Expand All @@ -277,7 +277,7 @@ In short, here's what the fields mean:
environment. If you are creating an environment for your analysis project,
this is where you would list other dependencies such as `nilearn`, `pandas`,
and especially as `pip` since you don't want to use the pip outside of your
environment Note that we specify `python>=3.7` to make sure the requirement is
environment Note that we specify `python>=3.8` to make sure the requirement is
satisfied for dcm2bids as the newer version of dcm2bids may face issue with
Python 3.6 and below.

Expand Down Expand Up @@ -384,7 +384,7 @@ containers:
channels:
- conda-forge
dependencies:
- python>=3.7
- python>=3.8
- dcm2niix
- dcm2bids

Expand Down

0 comments on commit 9cf58f9

Please sign in to comment.