Skip to content
New issue

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

What is broken? #3

Open
eric-burel opened this issue Jul 6, 2020 · 3 comments
Open

What is broken? #3

eric-burel opened this issue Jul 6, 2020 · 3 comments

Comments

@eric-burel
Copy link

Hi,

I currently struggle to build Blender Python on Linux.

In the readme you seem to say that this package is broken, could you please elaborate? Is the dependency install working?

Related: TylerGubala/blenderpy#1

@eric-burel
Copy link
Author

eric-burel commented Jul 9, 2020

Currently I got this during dep install:

tree/RootNode.h:23:10: fatal error: tbb/parallel_for.h: No such file or directory
 #include <tbb/parallel_for.h>
          ^~~~~~~~~~~~~~~~~~~~
compilation terminated.
Makefile:766: recipe for target 'io/GridDescriptor.o' failed
make: *** [io/GridDescriptor.o] Error 1
Makefile:766: recipe for target 'Grid.o' failed
make: *** [Grid.o] Error 1
...
ERROR! OpenVDB-7.0.0 failed to compile, exiting

Fixed by installing lbtbb-dev.

Now I get:

CMake Error at CMakeLists.txt:3 (cmake_minimum_required):
  CMake 3.12 or higher is required.  You are running version 3.10.2

CMake is nuts to install on Ubuntu for higher versions...

@selecsosi
Copy link

Currently I got this during dep install:

tree/RootNode.h:23:10: fatal error: tbb/parallel_for.h: No such file or directory
 #include <tbb/parallel_for.h>
          ^~~~~~~~~~~~~~~~~~~~
compilation terminated.
Makefile:766: recipe for target 'io/GridDescriptor.o' failed
make: *** [io/GridDescriptor.o] Error 1
Makefile:766: recipe for target 'Grid.o' failed
make: *** [Grid.o] Error 1
...
ERROR! OpenVDB-7.0.0 failed to compile, exiting

Fixed by installing lbtbb-dev.

Now I get:

CMake Error at CMakeLists.txt:3 (cmake_minimum_required):
  CMake 3.12 or higher is required.  You are running version 3.10.2

CMake is nuts to install on Ubuntu for higher versions...

Your solution fixed my issue, for cmake, my solution in docker:

RUN wget https://github.com/Kitware/CMake/releases/download/v3.16.5/cmake-3.16.5.tar.gz && \
  tar -zxvf cmake-3.16.5.tar.gz && \
  cd cmake-3.16.5 && \
  ./bootstrap && \
  make && \
  sudo make install

@egidijus
Copy link
Owner

I know it's been a while, thank you for caring !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants