10 lines
188 B
Bash
Executable File
10 lines
188 B
Bash
Executable File
#!/bin/sh
|
|
UNAME_S=$(uname -s)
|
|
|
|
if [ "$UNAME_S" == "Darwin" ]; then
|
|
ln -s /usr/local/include/freetype2 /usr/local/include/freetype
|
|
fi
|
|
|
|
pip install -r requirements.txt
|
|
chmod a+x generator
|