Skip to content

Instantly share code, notes, and snippets.

@rsgalloway
Last active August 20, 2019 07:45
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save rsgalloway/6f58b0eab37f01f150d35e9b7477a6ed to your computer and use it in GitHub Desktop.
Alembic OSX Build
# tool chain
xcode-select --install
# install homebrew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# required libs
brew doctor
brew install boost --with-python
brew install boost-python
brew install autoconf
brew install automake
brew install libtool
# IlmBase / PyIlmBase
git clone https://github.com/openexr/openexr
cd openexr/IlmBase
./bootsrap
./configure
make; make install
cd ../PyIlmBase
./bootsrap
./configure
make; make install
# Alembic
git clone https://github.com/alembic/alembic
cd alembic; mkdir build; cd build
cmake ../ -DUSE_PYTHON=ON
make
make install
# AbcView
git clone https://github.com/alembic/abcview
cd abcview; mkdir build; cd build
cmake ../ -DUSE_PYTHON=ON
make
make install
@bsavery
Copy link

bsavery commented Feb 21, 2017

You misspelled "bootstrap" in openexr

@ChloeLo27
Copy link

ChloeLo27 commented Aug 20, 2019

  • suggest to add under # required libs:
    • brew install cmake
    • brew install glew
  • ./bootsrap should be ./bootstrap

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment