An open API service indexing awesome lists of open source software.

https://github.com/iandanforth/toy-arm-sim

A toy Brachialis / Tricep simulation for deep reinforcement learning
https://github.com/iandanforth/toy-arm-sim

Last synced: 10 months ago
JSON representation

A toy Brachialis / Tricep simulation for deep reinforcement learning

Awesome Lists containing this project

README

          

# toy-arm-sim
A toy Brachialis / Tricep simulation for deep reinforcement learning

## Getting Started

Install pipenv. (A modern way to combine pip and virtual environments for cleaner package management.)

```
pip install pipenv
```

If this throws a permissions error you will need to to run this with 'sudo'

```
sudo pip install pipenv
```

Install dependencies and start a clean python environment

```
pipenv install
pipenv shell
```

Run the sim

```
python main.py
```

To exit the sim hit `esc` or close the window.

To exit this python environment

```
exit
```

or close your terminal and start a new one.