Closed hsd-dev closed 7 years ago
Dex-Net Installation Instructions might be helpful.
Boost.NumPy does not configure library path correctly even though everything looks successful. Add the installation paths for Boost.NumPy (default /usr/local/lib and /usr/local/lib64 but check the “make install” output) to new lines in /etc/ld.so.conf.d/: LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib:/usr/local/lib64 Add the installation paths to the ldconfig {open your favorite editor} {add the installation paths on new lines at end of file} {save file} Reload the ldconfig sudo ldconfig
You were right. It was not able to locate the boost_numpy library. After the solution you suggested I get:
$ldconfig -p | grep numpy
libboost_numpy.so (libc6,x86-64) => /usr/local/lib64/libboost_numpy.so
This still gives me the error:
Unable to import meshrender shared library! Rendering will not work. Likely due to missing Boost.Numpy
Boost.Numpy can be installed following the instructions in https://github.com/ndarray/Boost.NumPy
But I upgraded pip and then upgraded the packages installed by pip, and now the tests work!
After successfully installing dexnet, running the command
python setup.py test
gave the following output:Eventhough Boost.NumPy was installed successfully, it says rendering won't work likely due to missing Boost.NumPy Am I missing something?