Ubuntu – How to install the new GNS3 release

software installation

The GNS3 package in Ubuntu Software Center is old. I tried to install the new release GNS3 0.8.4 RC2 from the CLI using the following command:

sudo python gns3 0.8.4 exe (and bin) but I get a python error.

I have updated python and still get the same error.

The GNS installation instructions ar for using the Ubuntu Software Xenter for the installation but the newer releases are not found when I search for them. The releases are on my disk drive.

How can I install the packages?

Best Answer

You can easily install gns3 with these commands:

sudo apt install python3-pyqt5 python3-pyqt5.qtsvg
sudo pip3 install gns3-gui
sudo pip3 install gns3-server
Related Question