tohojo / flent

The FLExible Network Tester.
https://flent.org
Other
439 stars 78 forks source link

Crash during startup on ubuntu 24.10 #310

Closed ajoe closed 1 month ago

ajoe commented 1 month ago

Hi, Ubuntu 24.10 came out just today. I tried to install flent with: sudo apt install flent
but got this errors during install: ################# flent (2.1.1-3) wird eingerichtet ... /usr/share/flent/flent/metadata.py:247: SyntaxWarning: invalid escape sequence '\d' m = re.search("(qlen|txqueuelen) (\d+)", output) /usr/share/flent/flent/metadata.py:259: SyntaxWarning: invalid escape sequence '\w' m = re.search("Duplex: (\w+)", output) ################# But this install was completet. Then when I run "flent" I get this error in the Ubuntu error report tool: ################# run crashed with ModuleNotFoundError in /usr/share/flent/flent/plotters.py: No module named 'distutils' #################

Can anyone help? Will flent 2.2 solve this issue? Thanks, Jochen

tohojo commented 1 month ago

Yeah, please try v2.2.0 - you can install it from the ppa: https://launchpad.net/~tohojo/+archive/ubuntu/flent

On 11 October 2024 18:11:31 CEST, ajoe @.***> wrote:

Hi, Ubuntu 24.10 came out just today. I tried to install flent with: sudo apt install flent
but got this errors during install:

flent (2.1.1-3) wird eingerichtet ... /usr/share/flent/flent/metadata.py:247: SyntaxWarning: invalid escape sequence '\d' m = re.search("(qlen|txqueuelen) (\d+)", output) /usr/share/flent/flent/metadata.py:259: SyntaxWarning: invalid escape sequence '\w' m = re.search("Duplex: (\w+)", output)

But this install was completet. Then when I run "flent" I get this error in the Ubuntu error report tool:

run crashed with ModuleNotFoundError in /usr/share/flent/flent/plotters.py: No module named 'distutils'

Can anyone help? Will flent 2.2 solve this issue? Thanks, Jochen

ajoe commented 1 month ago

thanks, that solved it. So Ubuntu 24.10 needs flent v2.2.0. This steps solved it: sudo add-apt-repository ppa:tohojo/flent sudo apt update

ajoe commented 1 month ago

solved