Update INSTALL.md

merge-requests/1/merge
roeland jansen 2021-02-03 18:57:22 +00:00
rodzic 3acb02db3b
commit 0c78472629
1 zmienionych plików z 33 dodań i 0 usunięć

Wyświetl plik

@ -51,3 +51,36 @@ sudo ./install.sh
sudo chown $USER /dev/ttyUSB*
~~~
- most linux systems just need to have you added to the dialout group as that's persistent and more secure.
### opensuse install ###
---
the following is a raw - only one time tested piece of information
install suse 15.x (did this on a kde virtual machine leap 15.2)
qt5:
wget http://download.qt.io/official_releases/online_installers/qt-unified-linux-x64-online.run
chmod +x qt-unified-linux-x64-online.run
sudo zypper in --type pattern devel_basis
kdesu ./qt-unified-linux-x64-online.run
install base qt5 default qt5 desktop development
sudo zypper in libQt5Widgets-devel libqt5-qtbase-common-devel libqt5-qtserialport-devel libQt5SerialPort5 qcustomplot-devel libqcustomplot2 libQt5PrintSupport-devel
mkdir src
cd src
git clone https://gitlab.com/eliggett/wfview.git
cd ../
mkdir build
cd build
qmake-qt5 ../src/wfview/wvfiew.pro
make
sudo ./install.sh
---