Package Details: gns3-server 2.2.52-1

Git Clone URL: https://aur.archlinux.org/gns3-server.git (read-only, click to copy)
Package Base: gns3-server
Description: GNS3 network simulator, Server package
Upstream URL: https://github.com/GNS3/gns3-server
Licenses: GPL-3.0-only
Groups: gns3
Submitter: korjjj
Maintainer: buzo
Last Packager: buzo
Votes: 78
Popularity: 0.63
First Submitted: 2014-05-13 17:40 (UTC)
Last Updated: 2024-12-02 13:35 (UTC)

Dependencies (20)

Required by (2)

Sources (3)

Latest Comments

« First ‹ Previous 1 .. 7 8 9 10 11 12 13 14 15 16 17 Next › Last »

xscottw commented on 2018-11-08 01:51 (UTC)

I had an issue with some missing python stuff when trying to start this after the most recent update. Using "pip3 install gns3-server" and "pip3 install gns3-gui" like recommended on the GNS3 site solved it.

martisa commented on 2018-10-26 15:51 (UTC)

I workarounded the aiohttp-cors issue by installing it with: pip install aiohttp-cors==0.5.3

SinClaus commented on 2018-10-02 05:28 (UTC)

I've make symlinks to /usr/lib/python3.7/site-packages and gns3-server starts.

SinClaus commented on 2018-10-02 05:22 (UTC)

GNS3 still don't run on my comp. python-async-timeout-gns3 is installed in /usr/lib/python3.6/, actual version of python is 3.7. Ina trace back I see "pkg_resources.DistributionNotFound: The 'aiohttp-cors<0.6.0,>=0.5.3' distribution was not found and is required"

king007 commented on 2018-09-16 11:34 (UTC)

@buzo The new update fixed the error. Thanks for the quick fix. Regards

buzo commented on 2018-09-16 11:16 (UTC)

king007: I have added this change from upstream as a patch, which should fix this.

ucup commented on 2018-08-30 03:44 (UTC) (edited on 2018-08-30 03:44 (UTC) by ucup)

Problem Python 3.7 support in GNS3 already solved by Jeremy Grossman (https://github.com/GNS3/gns3-gui/issues/2566).. You can use GNS3 version 2.1.10dev2 to run GNS3 well in Arch Linux.. I already test it and it can run my topology network test with well..

You can download gns3-server package from here (https://github.com/GNS3/gns3-server/tree/814526ba2608af207b2d45fc9c2ac290872a71db) and gns3-gui package from here (https://github.com/GNS3/gns3-gui/tree/a5f4ec01355c357bd1a0752fb199797648d69772)..

That version can be temporary solution until GNS3 2.1.10 final version has release and ready in aur..

Thanks..

TvT82 commented on 2018-08-27 16:50 (UTC)

@stonyboy So, does this mean we cannot install Gns3-Server for now ? Or is there any way to workaround ? Thank you in advance

stonyboy commented on 2018-08-08 08:49 (UTC) (edited on 2018-08-08 12:41 (UTC) by stonyboy)

@SinClaus:

The python version has been updated from 3.6 to 3.7 and the gns3 packages need to be bytecompiled again with the new python version.

If you like me are using a AUR package manager (e.g aurman) you need to remove the cached packages to be able to force this step (e.g remove the folders named ~/.cache/aurman/gns3* and the dependency python packages like python-aiohttp-cors-gns3 etc.)

Getting that far you will probably see a number of bytecompilation errors in the gns3-server package like this:

File "/usr/lib/python3.7/site-packages/gns3server/controller/project.py", line 890 asyncio.async(self.start_all())

which signifies that the asyncio module has finally removed the asyncio.async function in favor of the asyncio.ensure_future function. The asyncio.async function was deprecated some python releases ago according to the documentation.

I have not yet checked with the GNS3 project site - but they will need to comply with this change - or the gns3-server package will need to contain a patch step for this to work with python 3.7