Bug in the README
Closed this issue · 2 comments
carlsmith commented
The README uses RAYLIB_LIB_PATH like a name, but it should be a string. This...
os.environ[RAYLIB_LIB_PATH] = "path/to/the/binary"
...should be...
os.environ["RAYLIB_LIB_PATH"] = "path/to/the/binary"