aramis-lab/clinica

Update the "Installation" documentation page

Closed this issue · 1 comments

Page : [https://github.com/aramis-lab/clinica/blob/dev/docs/Installation.md]
Step : Preparing the Python environment

When trying to install Miniconda for a MacBook M3 user the following command lines raise an error :
curl https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -o /tmp/miniconda-installer.sh bash /tmp/miniconda-installer.sh
The error arises when the user accepts to automatically initialize Conda.

Rather, the following lines install Miniconda properly :
mkdir -p ~/miniconda3 curl https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-arm64.sh -o ~/miniconda3/miniconda.sh bash ~/miniconda3/miniconda.sh -b -u -p ~/miniconda3 rm -rf ~/miniconda3/miniconda.sh

This issue is considered stale because it has not received further activity for the last 14 days. You may remove the inactive label or add a comment, otherwise it will be closed after the next 14 days.