Compilation de Planetary Imager sous Fedora 27
Rédigé par NGC44 Aucun commentaireIl y a quelques temps, j'ai écrit l'article Compilation de Planetary Imager sous Debian 9 Stretch. Étant aujourd'hui sur Fedora, voici une version adaptée.
Note : si vous voulez imager avec une ASI120MC, n'oubliez pas de flasher le firmware compatible Linux.
Installation des pré requis :
sudo dnf install \
boost-devel \
CCfits-devel \
cmake \
gcc-c++ \
git \
libdc1394-devel \
libusb-devel \
opencv-devel \
qt5-qtdeclarative-devel
Téléchargement des sources :
git clone --recursive \
https://github.com/GuLinux/PlanetaryImager.git
Compilation & installation :
cd PlanetaryImager
mkdir build && cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr
make all && sudo make install