taurus8 wrote:
when i want to covert .net file i receive following error
This also happened to me, the converter seems to be trying to process 'NOTE' and 'SHAPE' elements from the old topology as devices. A quick fix is to change
line 70 of
topology.py, found in the gns3-converter package folder, to:
Code:
if instance != 'GNS3-DATA' and 'NOTE' and 'SHAPE' and \
This makes the converter ignore these elements and continue as 'normal' ('NOTE' and 'SHAPE' elements are just annotation and are not needed for the topology to function). Alternatively you could delete them from the old topologies
topology.net file before attempting conversion.
claydon_dan wrote:
If you are on Mac... Suggestions gratefully received!
Installing Python 3.4+ from
https://www.python.org/downloads/ will also install pip and then gns3-converter can be installed in the same way as on Linux.