Home / z.archive. rev 320 - version 0.2.0 - 2012.03.13
Name Modified Size InfoDownloads / Week
Parent folder
ARS installation - Ubuntu.txt 2012-07-01 819 Bytes
ARS_rev320_v0.2.0.tar.gz 2012-03-13 39.1 kB
ARS_rev320_v0.2.0.7z 2012-03-13 32.4 kB
ARS_rev320_v0.2.0.zip 2012-03-13 63.0 kB
Totals: 4 Items   135.4 kB 0

ARS: Autonomous Robot Simulator

https://pypip.in/d/ARS/badge.png

ARS is a physically-accurate robotics simulator written in Python. It's main purpose is to help researchers to develop mobile manipulators and, in general, any multi-body system. It is open-source, modular, easy to learn and use, and can be a valuable tool in the process of robot design, in the development of control and reasoning algorithms, as well as in teaching and educational activities.

ARS uses Open Dynamics Engine (ODE) as physics engine, and Visualization Toolkit (VTK) as graphics engine. While both are well regarded and popular open-source software, ARS was designed to minimize coupling with them (through included abstraction layers) to let developers experiment with other alternatives.

Installation

Because ARS is pip-compatible, it's very easy to install, upgrade and uninstall it:

$ pip install ARS
$ pip install --upgrade ARS
$ pip uninstall ARS

While that's the recommended way to go, you may still follow the old-fashion procedure: download the file, unpack and run

$ python setup.py install

Requirements

ARS needs:

  • Python 2.6 or 2.7
  • ODE (Open Dynamics Engine) 0.12 with Python bindings
  • VTK (Visualization Toolkit) 5.8 with Python bindings
  • NumPy 1.6

ODE and VTK can be somewhat complicated to install, depending on your OS.

For detailed installation instructions (ARS and requirements) and troubleshooting, see the online documentation.

Documentation

The documentation is hosted at ReadTheDocs.org and it is generated dynamically after each commit to the repository.

License

This software is licensed under the OSI-approved "BSD License". To avoid confusion with the original BSD license from 1990, the FSF refers to it as "Modified BSD License". Other names include "New BSD", "revised BSD", "BSD-3", or "3-clause BSD".

See the included LICENSE.txt file.

Tests

To run the included test suite you need more packages (tox and mock):

~/ars$ pip install -r requirements_test.txt
~/ars$ tox
Source: README.rst, updated 2013-12-13