Skip to content

Instantly share code, notes, and snippets.

@Kyungpyo-Kim
Last active May 10, 2018 07:16
Show Gist options
  • Save Kyungpyo-Kim/2d9bc33cf483d26dc15346079f2f6c7c to your computer and use it in GitHub Desktop.
Save Kyungpyo-Kim/2d9bc33cf483d26dc15346079f2f6c7c to your computer and use it in GitHub Desktop.
Webots simulator installation, JOSM installation

Webots Installation on Linux

Reference

Package download and installation

  • 공식 홈페이지 다운로드 주소 https://www.cyberbotics.com/download

    • 공식 홈페이지에서 최신 LTS Ununtu Linux를 지원하는 .deb 파일 다운로드
  • .deb 패키지를 이용한 설치

    • Terminal 실행 후 아래 커맨드 입력
      cd ~/Downloads
      sudo apt install ./webots_2018a-rev2_amd64.deb
      
  • Terminal 에서 webots 실행

    webots
    

JOSM Installation on Linux

Reference

JOSM Installation

  • Terminal 실행 후 아래 커맨드 입력

    echo deb https://josm.openstreetmap.de/apt $(lsb_release -sc) universe | sudo tee /etc/apt/sources.list.d/josm.list > /dev/null
    
  • Download and register the public key:

    wget -q https://josm.openstreetmap.de/josm-apt.key -O- | sudo apt-key add -
    
  • Now refresh your sources (you may need to install sudo apt-get install apt-transport-https)

    sudo apt-get update
    
  • and install:

    # You can skip this first line if these packages were not installed before.
    sudo apt-get remove josm josm-plugins
    
    # For the tested version
    sudo apt-get install josm
    # for the development version
    sudo apt-get install josm-latest
    

Netedit Installation

Reference

Installation

  • Terminal 실행 후, 아래 커맨드 입력

    sudo add-apt-repository ppa:sumo/stable
    sudo apt-get update
    sudo apt-get install sumo sumo-tools sumo-doc
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment