-
Notifications
You must be signed in to change notification settings - Fork 3
Dependencies Installation and Helpful Hints for MacOS
This is a helpful guide for working on colour-science projects in MacOS. It's by no means prescriptive, and not every step is required. But if you want a reasonable, VS Code based development environment this guide may be helpful. Additionally, this guide installs some of the more obtuse dependencies like OpenImageIO and graphviz.
It was contributed by @tjdcs and last updated on 2023/07/25
Install Homebrew:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Install python versions.
brew install [email protected] [email protected] [email protected]
(Re)Install poetry
Poetry has a nasty habit of having breaking changes to the installer between minor versions, so we force uninstall and re-install.
curl -sSL https://install.python-poetry.org | python3 - --uninstall
curl -sSL https://install.python-poetry.org | python3 -
First:
brew install graphviz OpenImageIO
Then add the following to your shell config, usually ~/.zshrc
export LIBRARY_PATH=$LIBRARY_PATH:$(brew --prefix graphviz)/lib/
export CPATH=$CPATH:$(brew --prefix graphviz)/include/
export PYTHONPATH=$PYTHONPATH:$(brew --prefix OpenImageIO)/lib/python3.11/site-packages/OpenImageIO/
First fork the colour repository
Be sure to set or replace the environment variables in these commands.
cd $DEVELOPMENT_DIR
git clone [email protected]:$GITHUB_USER/colour.git
cd colour
It's optional, but helpful to put the poetry environment in the local directory.
poetry config virtualenvs.in-project true
Install the poetry environment
poetry env use 3.11
poetry install --all-extras
Open up VS Code and get to work!
code .
P.S. if you don't have the code command installed into your shell environment, open up VS Code manually and then press cmd-shift-p to bring up the command pallet. Then type "install code command" and press enter. Cheers!
colour-science uses the invoke framework to build several useful preflight commands:
cd $DEVELOPMENT_DIR/colour-science
poetry shell
invoke formatting && invoke quality && invoke precommit && invoke tests
or if you just want to run the tests, including doc-tests
invoke tests
Refer to the rest of the contributing guide.
The AMPAS Color Transform List Tools are used in some examples and documentation. If you want to be able to fully build and contrubute to any part of the colour-science codebase, this is helpful. The version that is currently provided by homebrew does not appear to work on the latest MacOS and relevent environments and it should be installed from source. Thankfully, the builder is very reliable.
brew install cmake ilmBase openexr libtiff aces_container
cd $TMPDIR
mkdir CTL_build
git clone [email protected]:ampas/CTL.git
cd CTL
mkdir build && cd build
cmake .. -J 10
make
sudo make install