Skip to content

Commit fca837b

Browse files
Update README.md
1 parent 7d62dc5 commit fca837b

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

README.md

+17-1
Original file line numberDiff line numberDiff line change
@@ -128,12 +128,28 @@ Manipulator with joint torque control:
128128

129129
## Installation
130130
### Dependencies
131+
* [CMake](https://cmake.org/) (Build System)
132+
```bash
133+
sudo apt-get install cmake # For Ubuntu
134+
brew install cmake # For macOS
135+
```
136+
131137
* [Eigen](https://formulae.brew.sh/formula/eigen) (Linear Algebra Library in CPP)
132-
133138
```bash
134139
sudo apt-get install libeigen3-dev # For Ubuntu
135140
brew install eigen # For macOS
136141
```
142+
143+
* [Matplotlib](https://matplotlib.org/) (Plotting Library in Python)
144+
```bash
145+
pip install matplotlib
146+
```
147+
148+
* [numpy](https://numpy.org/) (Numerical Library in Python)
149+
```bash
150+
pip install numpy
151+
```
152+
137153
Although the library automatically finds and installs the following dependencies via [FetchContent](https://cmake.org/cmake/help/latest/module/FetchContent.html), if you do not have ones, here is how you can install on your own.
138154

139155
* [OSQP](https://osqp.org/) (QP solver) and [osqp-cpp](https://github.com/google/osqp-cpp) (C++ Wrapper for OSQP)

0 commit comments

Comments
 (0)