This script builds Alembic and its Python bindings for Windows.
To use this script, you need to have the following software installed on your Windows machine:
- Visual Studio (MSVC)
- CMake
- Python3
- Git
To build PyAlembic, follow these steps:
-
Clone this repository to your local machine.
-
Open a PowerShell terminal and navigate to the repository folder.
-
Run the
build.ps1script with the-PythonRootoption, specifying the path to your Python installation. For example:PS C:\builds\pyalembic-windows-buildscript> .\build.ps1 -PythonRoot "C:\Program Files\Python314" | Tee-Object build.log
A .whl file will be output to the dist directory.
Pre-built wheels are available on the Releases page.
Note
These wheels support the Ogawa format only. HDF5-based .abc files (created by older software) are not supported.
Note
The wheels bundle third-party libraries (Alembic, Imath, Boost) under their respective licenses, which differ from the CC0 license of this repository.
To use PyAlembic module in your Python scripts, import the alembic module. For example:
import alembic
# Print a version
print(alembic.Abc.GetLibraryVersion())
# Create an .abc file
arch = alembic.Abc.OArchive("hoge.abc")
assert os.path.exists("hoge.abc")For more information on how to use PyAlembic, please refer to the official documentation.
This project is licensed under the CC0 license.