You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On anaconda, how can I install GL/osmesa.h with conda? I cannot use sudo and the system is red-hat. This issue ethz-asl/reinmav-gym#35 suggested to use sudo to install but I have no right to use sudo.
The text was updated successfully, but these errors were encountered:
Installing OSmesa on a conda will be very tricky. Getting sudo will be a less-painful solution for you. I think installing osmesa locally is outside the scope of mujoco-py, but if you really want to give a try, follow the instructions at https://docs.mesa3d.org/download.html and https://docs.mesa3d.org/install.html
What you'll need to add is to add --prefix=$CONDA_PREFIX (e.g. --prefix=/home/user/miniconda3/envs/your_virtual_env) (or --prefix=$HOME/.local/bin). This will also assume that your LDLIBRARY_PATH, C_INCLUDE_PATH, etc. are also configured accordingly.
Try my suggestion from #635, you can install GL/osmesa.h using conda install -c menpo osmesa. Then, set the environment variable C_INCLUDE_PATH=:$HOME/.conda/envs/<env-name>/include when you import mujoco_py the first time.
On anaconda, how can I install
GL/osmesa.h
with conda? I cannot use sudo and the system is red-hat. This issue ethz-asl/reinmav-gym#35 suggested to use sudo to install but I have no right to use sudo.The text was updated successfully, but these errors were encountered: