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
import mjcpy ImportError: .../gps/src/3rdparty/mjpro/bin/libmujoco150.so: undefined symbol: __glewBlitFramebuffer INFO:signal_shutdown [atexit]
I install opengl , libglew-dev and GLUT already. I also include them into 3rdparty/mjcpy2/CMakelist.txt as
else() find_package( osg REQUIRED) find_package( osgViewer REQUIRED) find_package( OpenThreads REQUIRED) find_package(osgGA REQUIRED) find_package(OpenGL REQUIRED) find_package(GLUT REQUIRED) find_package(GLEW REQUIRED) include_directories(SYSTEM ${GLEW_INCLUDE_DIRS} ${OPENGL_INCLUDE_DIRS} ${GLUT_INCLUDE_DIRS} ) # link_directories(${OSG}) set(OSG_LIBRARIES ${GLEW_LIBRARIES} ${OPENGL_LIBRARIES} ${GLUT_LIBRARY} ${OSG_LIBRARY} ${OSGVIEWER_LIBRARY} ${OPENTHREADS_LIBRARY} ${OSGGA_LIBRARY} ) endif()
The text was updated successfully, but these errors were encountered:
Sorry, we don't support Mujoco 1.5. Older versions of mujoco should be fine.
Sorry, something went wrong.
No branches or pull requests
import mjcpy
ImportError: .../gps/src/3rdparty/mjpro/bin/libmujoco150.so: undefined symbol: __glewBlitFramebuffer
INFO:signal_shutdown [atexit]
I install opengl , libglew-dev and GLUT already. I also include them into 3rdparty/mjcpy2/CMakelist.txt as
else()
find_package( osg REQUIRED)
find_package( osgViewer REQUIRED)
find_package( OpenThreads REQUIRED)
find_package(osgGA REQUIRED)
find_package(OpenGL REQUIRED)
find_package(GLUT REQUIRED)
find_package(GLEW REQUIRED)
include_directories(SYSTEM ${GLEW_INCLUDE_DIRS} ${OPENGL_INCLUDE_DIRS} ${GLUT_INCLUDE_DIRS} )
# link_directories(${OSG})
set(OSG_LIBRARIES ${GLEW_LIBRARIES} ${OPENGL_LIBRARIES} ${GLUT_LIBRARY} ${OSG_LIBRARY} ${OSGVIEWER_LIBRARY} ${OPENTHREADS_LIBRARY} ${OSGGA_LIBRARY} )
endif()
The text was updated successfully, but these errors were encountered: