-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update macos bootstrap script for macos 13.2.1
- Loading branch information
Showing
1 changed file
with
6 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,18 +2,17 @@ | |
set -o errexit -o nounset -o pipefail | ||
cd "`dirname $0`/.." | ||
|
||
sudo easy_install-3.8 pip | ||
pip install virtualenv --user | ||
python3 -m virtualenv venv | ||
brew install [email protected] | ||
python3.12 -m venv venv | ||
source venv/bin/activate | ||
|
||
# https://github.com/googlefonts/gftools/issues/121 | ||
## https://github.com/googlefonts/gftools/issues/121 | ||
brew install pkg-config | ||
brew install zlib | ||
pip install -U Pillow==5.4.1 idna==2.8 requests==2.21.0 urllib3==1.24.1 | ||
export PKG_CONFIG_PATH="/usr/local/opt/libffi/lib/pkgconfig" | ||
pip install -U Pillow==8.0.1 idna==2.8 requests==2.21.0 urllib3==1.24.1 | ||
export PKG_CONFIG_PATH="/opt/homebrew/opt/libffi/lib/pkgconfig" | ||
pip install pycairo | ||
pip install git+https://github.com/googlefonts/gftools | ||
pip install gftools | ||
|
||
pip install fontmake | ||
brew install ttfautohint | ||
|