You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Force desired channel resolution order in binary install
Resolves#2875 using the solution proposed therein.
@calvinp0 could you take a look and make sure I got this right?
@rwest could you also take a quick look at this?
Copy file name to clipboardExpand all lines: documentation/source/users/rmg/installation/anacondaUser.rst
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ Binary Installation Using Anaconda for Unix-Based Systems: Linux and Mac OSX
9
9
10
10
#. Install both RMG and the RMG-database binaries through the terminal. Dependencies will be installed automatically. It is safest to make a new conda environment for RMG and its dependencies. Type the following command into the terminal to create the new environment named 'rmg_env' containing the latest stable version of the RMG program and its database. ::
11
11
12
-
conda create --name rmg_env 'rmg::rmg'
12
+
conda create -n rmg_env -c conda-forge -c rmgrmg
13
13
14
14
Whenever you wish to use it you must first activate the environment::
15
15
@@ -19,7 +19,7 @@ Binary Installation Using Anaconda for Unix-Based Systems: Linux and Mac OSX
19
19
20
20
To install a specific version of RMG, add the version to the install command::
Not all versions of RMG are available via conda for all platforms. Check the `official RMG conda channel <https://anaconda.org/RMG/rmg/files>`_ to see which are available for download.
25
25
@@ -36,11 +36,11 @@ Updating your binary installation of RMG in Linux or Mac OSX
36
36
37
37
If you had previously installed a binary version of the RMG package and wish to update to a newer version, we suggest creating a new conda environment and installing the updated version there ::
It is also possible, though not advisable, to update your existing installation to the latest stable version available on Anaconda by typing the following command on the terminal ::
42
42
43
43
source activate rmg_env
44
-
conda update 'rmg::rmg'
44
+
conda update -c conda-forge -c rmgrmg
45
45
46
46
Doing this may break any other code present in the conda environment and RMG may not function correctly. If you attempt this update method and face issues, please attempt to install the new version of RMG in a new conda environment before reaching out for assistance.
0 commit comments