Skip to content

Instantly share code, notes, and snippets.

@therealmarv
Created March 19, 2019 18:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save therealmarv/ba970ac7ed5e1c55c26c47f78b3955b0 to your computer and use it in GitHub Desktop.
Save therealmarv/ba970ac7ed5e1c55c26c47f78b3955b0 to your computer and use it in GitHub Desktop.
Install easybake on macOS

How to install easybake with pip

  1. Install icu4c
brew install icu4c
  1. Install easybake

For Bash shell:

export PATH=$(brew --prefix icu4c)/bin:$(brew --prefix icu4c)/sbin:$PATH

env LDFLAGS="-L$(brew --prefix icu4c)/lib" \
CPPFLAGS="-I$(brew --prefix icu4c)/include" \
pip install git+https://github.com/Connexions/cnx-easybake.git#egg=cnx-easybake

For Fish shell:

set PATH (brew --prefix icu4c)"/bin:"(brew --prefix icu4c)"/sbin:$PATH"

env LDFLAGS="-L"(brew --prefix icu4c)"/lib" \
CPPFLAGS="-I"(brew --prefix icu4c)"/include" \
pip install git+https://github.com/Connexions/cnx-easybake.git#egg=cnx-easybake
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment