Skip to content

Commit

Permalink
Merge pull request #5 from Kei18/feature/ubuntu
Browse files Browse the repository at this point in the history
Feature/ubuntu
  • Loading branch information
Kei18 committed Apr 27, 2023
2 parents 9ab61e1 + 979a433 commit f1800e3
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
build-osx:
runs-on: macos-10.15
runs-on: macos-latest

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion LICENCE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright 2022 Keisuke Okumura
Copyright 2023 Keisuke Okumura

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
23 changes: 19 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
[![MIT License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](LICENSE)
[![ci](https://github.com/Kei18/mapf-visualizer/actions/workflows/ci.yml/badge.svg)](https://github.com/Kei18/mapf-visualizer/actions/workflows/ci.yml)

Simple multi-agent pathfinding (MAPF) visualizer for research usage.
Simple & scalable multi-agent pathfinding (MAPF) visualizer for research usage.

Based on [openFrameworks](https://openframeworks.cc/), written in C++, developed mainly for macOS
Based on [openFrameworks](https://openframeworks.cc/), written in C++

</div>

Expand All @@ -35,9 +35,24 @@ echo "export PATH=$(pwd)/bin/mapf-visualizer.app/Contents/MacOS:\$PATH" >> ~/.ba

required: around 10 minutes

### for Linux
### for Ubuntu

This repo was originally developed for macOS, but I heard that the visualizer worked on (Arch) Linux. To install, try `install_linux.sh`. You may need `sudo`.
```sh
git clone https://github.com/Kei18/mapf-visualizer.git
cd mapf-visualizer
wget -O third_party/openFrameworks.tar.gz https://github.com/openframeworks/openFrameworks/releases/download/0.11.2/of_v0.11.2_linux64gcc6_release.tar.gz
tar -xzvf third_party/openFrameworks.tar.gz -C third_party --strip-components=1 --one-top-level=openFrameworks
sudo third_party/openFrameworks/scripts/linux/ubuntu/install_dependencies.sh
sudo third_party/openFrameworks/scripts/linux/ubuntu/install_codecs.sh
make
echo "export PATH=$(pwd)/bin:\$PATH" >> ~/.bashrc
```

#### for other Linux

I heard that the visualizer worked on (Arch) Linux.
To install, try `install_linux.sh`.
You may need `sudo`.

## Usage

Expand Down

0 comments on commit f1800e3

Please sign in to comment.