@@ -8,8 +8,8 @@ The instructions below make this differentiation when relevant (the only differe
88of software installed on the same machine, where the communication isn't done via SSH).
99
1010Note:
11- ARC was only tested on Linux (Ubuntu _ 18.04.1 and 20 .04 LTS) and Mac machines.
12- We don't expect it to work smoothly on Windows machines.
11+ ARC was only tested on Linux (Ubuntu _ 18.04.1 until 24 .04 LTS & Rocky Linux 8.1 ) and Mac machines.
12+ / We don't expect it to work smoothly on Windows machines.
1313
1414Note:
1515 For a containerized setup, see the :ref: `Docker image <docker >` documentation.
@@ -26,29 +26,27 @@ Note:
2626Clone and setup path
2727^^^^^^^^^^^^^^^^^^^^
2828
29- - Download and install the `Anaconda Python Platform `__ for Python 3.7 or higher if you haven't already.
29+ - Download and install the `Miniforge `_ or ` Miniconda `_ for Python 3.12 or higher if you haven't already.
3030- Get git and appropriate compilers if you don't have them already by typing ``sudo apt install git gcc g++ make ``
3131 in a terminal.
3232- Clone ARC's repository to by typing the following command in the desired folder (e.g., under `~/Code/ `)::
3333
3434 git clone https://github.com/ReactionMechanismGenerator/ARC.git
3535
36- - Add ARC to your local path in ``.bashrc `` (make sure to change ``~/Path/to/ARC/ `` accordingly)::
3736
38- export PYTHONPATH=$PYTHONPATH:~/Path/to/ARC/
39-
40- __ anaconda _
37+ __ miniconda__
38+ __ miniforge__
4139
4240
4341.. _arce :
4442
4543Install dependencies
4644^^^^^^^^^^^^^^^^^^^^
4745
48- - Create the Anaconda environment for ARC (after changing the directory to the
46+ - Create the environment for ARC using miniforge or miniconda (after changing the directory to the
4947 installation folder by, e.g., ``cd ~/Code/ARC/ ``)::
5048
51- conda env create -f environment.yml
49+ conda env create -f environment.yml
5250
5351 Activate the ARC environment every time before you run ARC::
5452
@@ -58,30 +56,30 @@ Install dependencies
5856
5957 - Use the installer script via Make (recommended). Default is the packaged release::
6058
61- make install-rmg
59+ make install-rmg
6260
63- To install from source instead::
61+ To install from source instead (like a github repo) ::
6462
65- make install-rmg RMG_ARGS=--source
63+ make install-rmg RMG_ARGS=--source
6664
6765 Additional source options (examples)::
6866
69- make install-rmg RMG_ARGS="--source --conda"
70- make install-rmg RMG_ARGS="--source --pip"
67+ make install-rmg RMG_ARGS="--source --conda"
68+ make install-rmg RMG_ARGS="--source --pip"
7169
7270 Optional extras (examples)::
7371
74- make install-rmg RMG_ARGS="--rms"
75- make install-rmg RMG_ARGS="--source --rms --ssh"
72+ make install-rmg RMG_ARGS="--rms"
73+ make install-rmg RMG_ARGS="--source --rms --ssh"
7674
77- See ``devtools/install_rmg.sh --help`` for all flags.
75+ See ``bash devtools/install_rmg.sh --help`` for all flags.
7876
7977 - Source install RMG-Py + RMG-database manually, then set `RMG_PY_PATH ` and `RMG_DB_PATH ` in your shell or
8078 `.arc/settings.py `.
8179
8280 - Install the packaged RMG release (RMG-Py + RMG-database + Arkane) into a dedicated environment::
8381
84- mamba create -n rmg_env -c rmg -c conda-forge python=3.9 conda-forge::numpy>=1.10.0,<2 \
82+ mamba create -n rmg_env -c rmg -c conda-forge python=3.9 conda-forge::numpy>=1.10.0,<2 \
8583 blas=*=openblas conda-forge::numdifftools rmg=3.3.0 connie::symmetry
8684
8785 ARC runs Arkane automatically for statmech from this environment.
0 commit comments