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
Copy file name to clipboardExpand all lines: documentation/source/users/rmg/installation/anacondaDeveloper.rst
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,29 +26,29 @@ Installation by Source Using Anaconda Environment for Unix-based Systems: Linux
26
26
Note that you should reinitialize or restart your terminal in order for the changes to take effect, as the installer will tell you.
27
27
28
28
#. There are a few system-level dependencies which are required and should not be installed via Conda. These include
29
-
`Git <https://git-scm.com/>`_ for version control, `GNU Make <https://www.gnu.org/software/make/>`_, and the C and C++ compilers from the `GNU Compiler Collection (GCC) <https://gcc.gnu.org/>`_ for compiling RMG.
29
+
`Git <https://git-scm.com/>`_ for version control, `GNU Make <https://www.gnu.org/software/make/>`_, and the C and C++ compilers from the `GNU Compiler Collection (GCC) <https://gcc.gnu.org/>`_ for compiling RMG. For WSL users, `libxrender1 <https://packages.debian.org/sid/libxrender1>`_ may also need to be installed.
30
30
31
31
For Linux users, you can check whether these are already installed by simply calling them via the command line, which
32
32
will let you know if they are missing. To install any missing packages, you should use the appropriate package manager
33
33
for your system.
34
34
35
35
a. On Ubuntu and Debian the package manager is ``apt`` ::
36
36
37
-
sudo apt install git gcc g++ make
37
+
sudo apt install git gcc g++ make libxrender1
38
38
39
39
b. On Fedora and Red Hat derivatives (RHEL 8+) the package manager is ``dnf`` ::
40
40
41
-
sudo dnf install git gcc gcc-c++ make
41
+
sudo dnf install git gcc gcc-c++ make libxrender1
42
42
43
43
c. For Red Hat 7 and lower, replace ``dnf`` with ``yum`` in the preceding.
44
44
45
45
d. On openSUSE the package manager is ``zypper``::
46
46
47
-
sudo zypper install git gcc gcc-c++ make
47
+
sudo zypper install git gcc gcc-c++ make libxrender1
48
48
49
49
e. On Manjaro or Arch Linux the package manager is ``pacman`` ::
50
50
51
-
sudo pacman -S git gcc make
51
+
sudo pacman -S git gcc make libxrender1
52
52
53
53
f. For MacOS users, the above packages can be easily obtained by installing the XCode Command Line Tools.
54
54
These are a set of packages relevant for software development which have been bundled together by Apple.
0 commit comments