Commits
Darrell Schiebel authored db1a1911fc8
111 111 | Note: on NRAO systems CodeReadyBuilder is packaged as part of nrao-rhel-8.repo and EPEL is packaged as nrao-epel-8.repo and both should be installed on all RHEL8 NRAO system. |
112 112 | |
113 113 | Run as root or as a used with sudo rights the following commands: |
114 114 | |
115 115 | ``` |
116 116 | # Make sure that the additional repos needed are there |
117 117 | $ dnf -y install epel-release |
118 118 | $ dnf install -y dnf-plugins-core |
119 119 | $ dnf config-manager --set-enabled powertools |
120 120 | |
121 - | # Packages needed for casacore development |
121 + | # Packages needed for casacore development |
122 122 | $ sudo dnf -y install git cmake gcc-c++ gcc-gfortran gtest-devel ccache readline-devel ncurses-devel blas-devel lapack-devel cfitsio-devel fftw-devel wcslib-devel python38 python38-devel python38-numpy flex bison tar curl |
123 123 | |
124 124 | # Packages needed for libsakura development |
125 125 | $ sudo dnf -y install eigen3-devel fftw-devel |
126 126 | |
127 127 | # Additional packages needed for casa development |
128 128 | $ dnf -y install java-1.?.0-openjdk-devel chrpath python38-wheel python38-numpy swig pkgconf-pkg-config xerces-c-devel libxml2-devel libxslt-devel gsl-devel sqlite-devel wcslib-devel openmpi-devel xorg-x11-server-Xvfb |
129 129 | |
130 130 | # Set python 3.8 as the default python |
131 131 | $ sudo alternatives --set python /usr/bin/python3.8 |