patriciogonzalezvivo / thebookofshaders

Step-by-step guide through the abstract and complex universe of Fragment Shaders.
http://TheBookOfShaders.com
Other
5.96k stars 677 forks source link

"make clean pdf" fails on on newer MacOS versions #386

Open jethro-djan opened 1 year ago

jethro-djan commented 1 year ago

In the makefile, we have, for example, the following:

python2.7 src/parseBook.py -f pdf

Because newer MacOS versions don't ship with python2.7 anymore, the make process fails. Since this is used by different platforms, is there a way this could be more differentiated? I don't know much about makefiles so I can't help. I had to manually change it to

python3 src/parseBook.py -f pdf

Some people might not be able to this

j-a-c-k-goes commented 1 year ago

This was helpful!