Skip to content

Commit

Permalink
Merge branch 'master' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
alx87grd authored Jan 22, 2020
2 parents 64ed1e3 + 1646017 commit 367cae8
Showing 1 changed file with 22 additions and 7 deletions.
29 changes: 22 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,28 @@
# Python Robotics
A toolbox for robot dynamic simulation, analysis, control and planning

A toolbox for robot dynamic simulation, analysis, control and planning.

## Installation ##

## Installing
Required libraries:

To install the package, use:
```bash
pip install git+https://github.com/SherbyRobotics/pyro
```
* numpy
* scipy
* matplotlib
* pytest (only to run tests)

It will install the files from the project (not only one `__init__.py`). It will also check to install the required dependencies.
Run the following command to install the pyro library to your python
environment:

`python setup.py install`

## Development ##

Use `python setup.py develop` to install in develop mode, which will
create a link (.egg-link file) to this code. The `pyro` module
will therefore be automatically updated as you edit the code in this
repository.

Run tests: `pytest -ra ./tests` (from repository root)

Run all examples: `pytest -ra ./examples` (from repository root)

0 comments on commit 367cae8

Please sign in to comment.