We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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 mpi4py==3.0.0
conda config --append channels conda-forge
conda install mpi4py==3.0.0
pip install mujoco_py would not work. pip install mujoco_py==2.0.2.8 works for me.
pip install mujoco_py
pip install mujoco_py==2.0.2.8
pip install 'gym[all]' would not work. sudo apt-get install libosmesa6-dev and conda install 'gym[all]' work for me.
pip install 'gym[all]'
sudo apt-get install libosmesa6-dev
conda install 'gym[all]'
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/"
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.
sudo apt-get install libglu1-mesa-dev
Encountering "cannot find 'patchelf'" error, conda install -c anaconda patchelf works for me
conda install -c anaconda patchelf
The text was updated successfully, but these errors were encountered:
No branches or pull requests
FYI
pip install mpi4py==3.0.0
would not work.conda config --append channels conda-forge
andconda 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
andconda 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 meThe text was updated successfully, but these errors were encountered: