Alembic-Ubuntu¶
Link¶
git clone git@github.com:alembic/alembic.git¶
| Text Only | |
|---|---|
1 2 3 4 5 6 7 8 | |
Ubuntu¶
| Text Only | |
|---|---|
1 2 | |
sudo find /usr /usr/local /opt -name "AlembicConfig.cmake" 2>/dev/null¶
| Text Only | |
|---|---|
1 2 | |
sudo find /usr /usr/local /opt -name "alembic-config.cmake" 2>/dev/null¶
| Text Only | |
|---|---|
1 2 | |
| Text Only | |
|---|---|
1 2 | |
sudo find /usr /usr/local /opt -name "Alembic" -type d 2>/dev/null¶
| Text Only | |
|---|---|
1 2 | |
sudo find /usr /usr/local /opt/lib -name "libAlembic*.so" 2>/dev/null¶
| Text Only | |
|---|---|
1 2 | |
dpkg -l | grep alembic¶
| Text Only | |
|---|---|
1 2 | |
cat /usr/local/lib/cmake/Alembic/AlembicConfigVersion.cmake¶
| Text Only | |
|---|---|
1 2 | |
| Text Only | |
|---|---|
1 2 | |
sudo apt install libimath-dev libhdf5-dev zlib1g-dev¶
| Text Only | |
|---|---|
1 2 3 4 5 6 7 8 9 | |
git clone https://github.com/alembic/alembic.git¶
| Text Only | |
|---|---|
1 2 3 4 5 6 7 8 | |
mkdir build && cd build¶
| Text Only | |
|---|---|
1 2 | |
cmake ..
| Text Only | |
|---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | |
| Text Only | |
|---|---|
1 2 | |