@@ -12,8 +12,9 @@ We distribute a statically linked Raylib library, install from Pypi.
12
12
13
13
pip3 install raylib
14
14
15
- If you're using ** Linux** a different version of Python, or maybe a different version of Windows/Mac with incompatible libraries
16
- then you can either use the dynamic binding only or else you will have to build from source using Raylib 2.5, e.g.
15
+ If you're using ** Linux** , or a different version of Python, or maybe Windows/Mac with incompatible libraries
16
+ then you can either * use the dynamic binding only* or else you will have to build from source. Download, compile
17
+ and install Raylib 2.5 then
17
18
18
19
cd raylib/static
19
20
python3 build_linux.py
@@ -22,7 +23,7 @@ then you can either use the dynamic binding only or else you will have to build
22
23
23
24
## raylib.static
24
25
25
- Currently the goal is make usage as similar to the original C as CFFI will allow. There are a few differences
26
+ Goal is make usage as similar to the original C as CFFI will allow. There are a few differences
26
27
you can see in the examples. See test_static.py and examples/* .py for how to use.
27
28
28
29
```
@@ -50,9 +51,10 @@ In addition to the API static bindings we have CFFI ABI dynamic bindings in orde
50
51
There have been some weird failures with dynamic bindings and ctypes bindings before and often the failures are silent
51
52
so you dont even know. Also the static bindings should be faster. Therefore I recommend the static ones...
52
53
53
- BUT the dynamic bindings have the big advantage that you don't need to compile anything to install.
54
+ BUT the dynamic bindings have the big advantage that you don't need to compile anything to install. You just need a Raylib DLL,
55
+ which we supply for Windows/Mac/Linux.
54
56
55
- See test_dynamic.py for how to use them .
57
+ See test_dynamic.py for how to use.
56
58
57
59
## raylib.static.pyray
58
60
0 commit comments