On Mon, Jan 30, 2023 at 10:44 PM, Fkawee wrote:
As mentioned it used to work until ubuntu upgraded itself (with my permission
yikes) to 20.04.
When I click on the exe file I get no response.
Why do you try the "exe" on a Linux system? - just follow my advice from below - open a terminal, go to a project or development directory and do this (maybe you need to install git: "sudo apt install git").
git clone
Then enter the directory:
cd nanovna-saver
and just type
python nanovna-saver.py
Check the error messages (missing modules) and install them, e.g. these are essential:
sudo apt install python3-numpy python3-scipy
until the program starts without complaint.
To follow the development, just fetch an update with
git pull
If you want to install the tool in your path, you can create a Debian package by typing
make deb
For this you need to install python3-stdeb, the module for converting Python code and modules to a Debian package.
sudo apt install python3-stdeb
You need also an udev rule that allows user access to the USB serial port of NanoVNA and tinySA.
This is currently not part of the package - just use this one and install it into /etc/udev/rules.d:
Martin