diff --git a/docs/INSTALLATION.md b/docs/INSTALLATION.md index 72385751..784a66c7 100644 --- a/docs/INSTALLATION.md +++ b/docs/INSTALLATION.md @@ -58,11 +58,11 @@ or `make rpm` builds an (untested) rpm package that can be installed on your system the usual way. -## Ubuntu 20.04 / 22.04 +## Ubuntu 20.04 / 22.04 / 24.04 1. Install python3 and pip - sudo apt install python3 python3-pip + sudo apt install python3 python3-pip libxcb-cursor-dev python3 -m venv ~/.venv_nano . ~/.venv_nano/bin/activate pip install -U pip diff --git a/src/NanoVNASaver/Windows/About.py b/src/NanoVNASaver/Windows/About.py index 10b4729c..52f7c57e 100644 --- a/src/NanoVNASaver/Windows/About.py +++ b/src/NanoVNASaver/Windows/About.py @@ -146,7 +146,7 @@ def findUpdates(self, automatic=False): line = line.decode("utf-8") found_latest_version = TAGS_KEY in line if found_latest_version: - latest_version = Version(re.search("(\d+\.\d+\.\d+)", line).group()) + latest_version = Version(re.search(r"(\d+\.\d+\.\d+)", line).group()) break except error.HTTPError as e: logger.exception(