Skip to content

Instantly share code, notes, and snippets.

@AJNOURI
Created October 23, 2016 05:08
Show Gist options
  • Select an option

  • Save AJNOURI/dd01c0bc423e48df1b09be7c8b5ecbe4 to your computer and use it in GitHub Desktop.

Select an option

Save AJNOURI/dd01c0bc423e48df1b09be7c8b5ecbe4 to your computer and use it in GitHub Desktop.
# Initial installation
VERSION = '2.0.0a2'
sudo apt-get install python3-dev psutils vncviewer
pip3 install gns3-gui==VERSION
pip3 install gns3-server==VERSION
# Update to latest 2.0 branch
cd ~
sudo rm -R gns3-server
sudo rm -R gns3-gui
git clone -b 2.0 https://github.com/GNS3/gns3-server
cd ~
git clone -b 2.0 https://github.com/GNS3/gns3-gui
cd ~/gns3-server
sudo python3 setup.py install
cd ~/gns3-gui
sudo python3 setup.py install
# Manual starting with debugging
cd ~/gns3-server
python3 -m gns3server --log /tmp/server.log --local
cd ~/gns3-gui
python3 -m gns3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment