wfview/INSTALL.md

58 wiersze
1.8 KiB
Markdown
Czysty Zwykły widok Historia

2020-03-15 02:50:57 +00:00
# How to install wfview
### 1. Install prerequisites:
(Note, some packages may have slightly different version numbers, this should be ok for minor differences.)
~~~
sudo apt-get install build-essential
sudo apt-get install qt5-qmake
sudo apt-get install qt5-default
sudo apt-get install libqt5core5a
sudo apt-get install qtbase5-dev
sudo apt-get install libqt5serialport5 libqt5serialport5-dev
sudo apt-get install git
2020-04-03 23:23:10 +00:00
~~~
Now you need to install qcustomplot. There are two versions that are commonly found in linux distros: 1.3 and 2.0. Either will work fine. If you are not sure which version your linux install comes with, simply run both commands. One will work and the other will fail, and that's fine!
qcustomplot1.3 for older linux versions (Linux Mint 19.x, Ubuntu 18.04):
~~~
2020-03-28 00:53:04 +00:00
sudo apt-get install libqcustomplot1.3 libqcustomplot-doc libqcustomplot-dev
2020-04-03 23:23:10 +00:00
~~~
qcustomplot2 for newer linux versions (Ubuntu 19, Rasbian V?, Debian 10):
~~~
2020-04-05 00:50:47 +00:00
sudo apt-get install libqcustomplot2.0 libqcustomplot-doc libqcustomplot-dev
2020-03-15 02:50:57 +00:00
~~~
2020-04-03 23:23:10 +00:00
2020-03-15 02:50:57 +00:00
optional for those that want to work on the code using the QT Creator IDE:
~~~
sudo apt-get install qtcreator qtcreator-doc
~~~
### 2. Clone wfview to a local directory on your computer:
~~~
cd ~/Documents
git clone https://gitlab.com/eliggett/wfview.git
~~~
### 3. Create a build directory, compile, and install:
~~~
mkdir build
cd build
qmake ../wfview/wfview.pro
make -j
sudo ./install.sh
~~~
2020-04-05 06:39:30 +00:00
Note: On Ubuntu 19, for reasons I do not understand, one must issue this qmake command instead:
~~~
qmake -nodepend ../wfview/wfview.pro
~~~
If you know why, please tell me.
2020-03-15 02:50:57 +00:00
### 4. You can now launch wfview, either from the terminal or from your desktop environment. If you encounter issues using the serial port, run the following command:
~~~
sudo chown $USER /dev/ttyUSB*
~~~