Yann
Results
1
comments of
Yann
I found how to fix the part about python by changing the python print call in GrPython.cmake file and keeping using Python3. Before: `print sysconfig.get_python_lib(plat_specific=True, prefix='')` After: `print(sysconfig.get_python_lib(plat_specific=True, prefix=''))` The...