Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FYI] Install requirement packages guide #8

Open
TigerStone93 opened this issue Sep 28, 2020 · 0 comments
Open

[FYI] Install requirement packages guide #8

TigerStone93 opened this issue Sep 28, 2020 · 0 comments

Comments

@TigerStone93
Copy link

TigerStone93 commented Sep 28, 2020

FYI

pip install mpi4py==3.0.0 would not work.
conda config --append channels conda-forge and
conda install mpi4py==3.0.0 works for me.

pip install mujoco_py would not work.
pip install mujoco_py==2.0.2.8 works for me.

pip install 'gym[all]' would not work.
sudo apt-get install libosmesa6-dev and
conda install 'gym[all]' work for me.

Add lines below into .bashrc
export LD_LIBRARY_PATH="/home/[YOUR_USER_NAME]/.mujoco/mujoco200/bin:$LD_LIBRARY_PATH"
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/include/GL/"

Encountering "cannot find -lGL" error,
sudo apt-get install libglu1-mesa-dev works for me.

Encountering "cannot find 'patchelf'" error,
conda install -c anaconda patchelf works for me

@TigerStone93 TigerStone93 changed the title [FYI] Install necessary Python packages [FYI] Install requirement packages guide Oct 30, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant