1- # Python Bindings for Raylib 5.5
1+ # Python Bindings for Raylib 5.6
22## Libraries: raymath, raygui, rlgl, physac and GLFW
33## Backends: Desktop, SDL, DRM, Web
44## Platforms: Windows, Mac, Linux, Raspberry Pi, Web
@@ -21,7 +21,7 @@ original Raylib.
2121
2222# Quickstart
2323
24- ` pip3 install raylib==5.5.0.3 --break-system-packages `
24+ ` pip3 install raylib==5.5.0.4 --break-system-packages `
2525``` python
2626from pyray import *
2727init_window(800 , 450 , " Hello" )
@@ -33,17 +33,26 @@ while not window_should_close():
3333close_window()
3434```
3535
36- [ Example project] ( https://github.com/electronstudio/raylib-example-game )
3736
38- [ Project generator] ( https://github.com/electronstudio/python-raylib-template )
37+
38+ Use the [ project generator] ( https://github.com/electronstudio/python-raylib-template ) to generate a complete project. [ Example of project] ( https://github.com/electronstudio/raylib-example-game )
39+
40+ # Videos
41+
42+
43+ <a href =" https://www.youtube.com/watch?v=MIgq9w0MUsM " ><img src =" https://img.youtube.com/vi/MIgq9w0MUsM/0.jpg " alt =" video " /></a >
44+
45+ <a href =" https://www.youtube.com/watch?v=UoAsDlUwjy0 " ><img src =" https://img.youtube.com/vi/UoAsDlUwjy0/0.jpg " alt =" video " /></a >
46+
47+
48+
49+ [ more videos] ( https://www.youtube.com/@FinFET/videos )
3950
4051# Links
4152
4253* [ Tutorial video] ( https://www.youtube.com/watch?v=UoAsDlUwjy0&lc=UgxCR-tvnQJITZr2IvN4AaABAg )
4354* [ Full documentation] ( https://electronstudio.github.io/raylib-python-cffi )
4455* [ Imgui integration] ( https://github.com/Scr44gr/raylib-imgui )
45- * [ Examples] ( https://github.com/electronstudio/raylib-python-cffi/tree/master/examples )
46- * [ Blep's examples] ( https://github.com/blep/pyray_examples )
4756* [ Raylib Python Discord] ( https://discord.gg/fKDwt85aX6 )
4857* [ Raylib General Discord] ( https://discord.com/invite/raylib )
4958* [ Python video player] ( https://github.com/anrayliu/pyvidplayer2 )
@@ -64,15 +73,15 @@ Then make sure you have the latest pip installed:
6473Then install
6574
6675 python3 -m pip install setuptools
67- python3 -m pip install raylib==5.5.0.3
76+ python3 -m pip install raylib==5.5.0.4
6877
6978On most platforms it should install a binary wheel. If yours isn't available then pip will attempt to build from
7079source, in which case you will need to have Raylib development libs installed, e.g.
7180using homebrew, apt, etc.
7281
7382## Windows
7483
75- Binaries require x64 Windows 10 or newer. (For x86 or older Windows you will have to build from source.)
84+ Binaries require x64 or x86 Windows 10 or newer.
7685
7786Use an [ official Windows Python release] ( https://www.python.org/downloads/windows/ ) rather than WSL, MSYS, etc.
7887
@@ -86,14 +95,11 @@ Older MacOS requires building from source but this is usually simple:
8695
8796 brew install pkg-config
8897 brew install raylib
89- python3 -m pip install raylib==5.5.0.3
90-
91- (I do have binaries for arm64 MacOS 11, 12 and 13 but I have no way of testing they work, so post an issue
92- if you want to test them.)
98+ python3 -m pip install raylib==5.5.0.4
9399
94100## Linux
95101
96- Binaries require OS newer than Ubuntu 2020 , x64 or arm64. Otherwise build from source.
102+ Binaries require OS newer than Ubuntu 2016 , x64/x86 or Ubuntu 2022 arm64. Otherwise build from source.
97103(Pip should attempt automatically but will need Raylib itself installed and also pkg-config.)
98104
99105The arm64 binaries are built on Raspberry Pi arm64 Bullseye with OpenGL 2.0
0 commit comments