Advertisement
Guest User

aw

a guest
Sep 24th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. if you get elfclass errors you don't have the right x86 packages installed
  2. fix:
  3. dpkg --add-architecture i386 (this is for debian, use equivalent on your OS)
  4. apt-get update (or yum)
  5. apt-get install libtbb2:i386 (or yum)
  6.  
  7. if you get missing library libtbb2.so you don't have libtbb2 package installed
  8. fix:
  9. apt-get install libtbb2 (or yum, if on x86)
  10. apt-get install libtbb2:i386 (or yum, if on x86_x64)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement