cvkit: plyv not found after successful installation

I was able to successfully install following the directions without any error. And I am able to find sv, imgcmd, and plycmd with which command. However, which cannot find plyv:

>>> which sv
/usr/local/bin/sv
>>>which plyv
plyv not found

About this issue

  • Original URL
  • State: closed
  • Created 4 years ago
  • Comments: 16 (7 by maintainers)

Most upvoted comments

I have no idea what the problem is.

One quick and dirty fix that you could try is to specify the directory in which “GL/glew.h” resides as an additional include directory, e.g. in CMAKE_CXX_FLAGS. Under linux that would be:

cmake -DCMAKE_CXX_FLAGS="-I/usr/local/Cellar/glew/2.1.0_1/include/" ..

Then it should find the header.

Can you find glew*.cmake anywhere else on your system? Or can you install the full glew developer package (i.e. including headers) again in some folder and tell cmake to use the cmake file of that package?

It needs OpenGL, GLEW an GLUT. plyv is not built if it cannot find them. Please check the output of cmake to see what is missing.