forked from alx87grd/AlexRobotics
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
22 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |