Models and useful scripts for the usage of TEO robot in bullet and pybullet. If you are looking for the source code of the robot itself, visit the teo-main repository.
pip install pybullet
(optional) Install Jupyter Notebooks to test the examples
pip install jupyter
Eigen
cd
mkdir -p repos && cd repos
git clone https://gitlab.com/libeigen/eigen.git
cd eigen
mkdir build_dir
cd build_dir
cmake ..
sudo make install
Pytest
pip install pytest
pybind11
cd
mkdir -p repos && cd repos
git clone https://github.com/pybind/pybind11.git
cd pybind
mkdir build
cd build
cmake ..
sudo make install
Clone the repo
mkdir -p repos && cd repos
git clone https://github.com/imontesino/pybullet-tests.git
Compile the inverse kinematics python module
cd source
mkdir build
cd build
cmake ..
sudo make install
Examples of jupyter notebooks are inside the /notebooks
folder.