Skip to main content

Python Bindings for Raylib 6.0

Libraries: raymath, raygui, rlgl, physac and GLFW

Backends: Desktop, SDL, DRM, Web, Software rendering

Platforms: Windows, Mac, Linux, Raspberry Pi, Web

PyPI - Downloads

PyPI Downloads

HELP WANTED: writing examples

Features:

  • CFFI API static bindings.
  • Automatically generated to be as close as possible to original Raylib.
  • Faster, fewer bugs and easier to maintain than ctypes.
  • Commercial-friendly license.
  • Docstrings and auto-completion.
  • Type checking with Mypy

Quickstart

pip3 install raylib==6.0.1.0 --break-system-packages

from pyray import *
init_window(800, 450, "Hello")
while not window_should_close():
    begin_drawing()
    clear_background(WHITE)
    draw_text("Hello world", 190, 200, 20, VIOLET)
    end_drawing()
close_window()

Use the project generator to generate a complete project. Example of project

Videos

FinFET - Making a simple 3D game in Python (for real) with Raylib
video

more on FinFET

Clear Code - The ultimate introduction to Raylib
video

Unconventional Coding - I Made My Own Video Editor Because Kdenlive Is Too Slow
video

WOBLO GAMES - The Druid's Downfall
video

Links

Installation

If you are on a modern Linux you will probably want to create a venv:

python3 -m venv venv
source venv/bin/activate

Then make sure you have the latest pip installed:

python3 -m pip install --upgrade pip

Then install

python3 -m pip install setuptools
python3 -m pip install raylib==6.0.1.0

On most platforms it should install a binary wheel. If yours isn't available then pip will attempt to build from source, in which case you will need to have Raylib development libs installed, e.g. using homebrew, apt, etc.

Windows

Binaries require x64 or x86 Windows 10 or newer.

Use an official Windows Python release rather than WSL, MSYS, etc.

MacOS

Binaries require:

  • arm64 MacOS 14
  • x64 MacOS 10.13, or newer.

Older MacOS requires building from source but this is usually simple:

brew install pkg-config
brew install raylib
python3 -m pip install raylib==6.0.1.0

Linux

Binaries require OS newer than Ubuntu 2016, x64/x86 or Ubuntu 2022 arm64. Otherwise build from source. (Pip should attempt automatically but will need Raylib itself installed and also pkg-config.)

The arm64 binaries are built on Raspberry Pi arm64 Bullseye with OpenGL 2.0 so may not work on other boards.

Raspberry Pi

Using on Rasperry Pi

Backends

Dynamic binding version

There is now a separate dynamic version of this binding:

python3 -m pip uninstall raylib
python3 -m pip install raylib_dynamic

It works on some systems where the static version doesn't, but be sure to read these caveats before using it

You can't have multiple raylib packages installed at once.

SDL backend

This is not well tested but has better support for controllers:

python3 -m pip uninstall raylib
python3 -m pip install raylib_sdl

You can't have multiple raylib packages installed at once.

DRM backend

This uses the Linux framebuffer for devices that don't run X11/Wayland:

python3 -m pip uninstall raylib
python3 -m pip install raylib_drm

You can't have multiple raylib packages installed at once.

Problems?

If it doesn't work, try to build manually.. If that works then submit an issue to let us know what you did.

If you need help you can try asking on our discord. There is also a large Raylib discord for issues that are not Python-specific.

If it still doesn't work, submit an issue.

How to use

There are two modules in the raylib package, raylib and pyray. (There is no separate package for pyray. Do not pip install pyray). You can use either or both:

If you are familiar with C coding and the Raylib C library and you want to use an exact copy of the C API

Use the raylib module.

If you prefer a more Pythonistic API

Use the pyray module.

Running in a web browser

Pygbag >=0.8.7 supports running in a web browser. Usually the latest git version is recommended.

Make a folder my_project with a file main.py:

# /// script
# dependencies = [
#     "cffi",
#     "raylib"
# ]
# ///
import asyncio
import platform
from pyray import *

async def main():   # You MUST have an async main function
    init_window(500, 500, "Hello")
    platform.window.window_resize()  # You MAY want to add this line
    while not window_should_close():
        begin_drawing()
        clear_background(WHITE)
        draw_text("Hello world", 190, 200, 20, VIOLET)
        end_drawing()
        await asyncio.sleep(0) # You MUST call this in your main loop
    close_window()

asyncio.run(main())

Then to create the web files and launch a web server:

python3.12 -m pip install --user --upgrade pygbag
python3.12 -m pygbag --PYBUILD 3.12 --ume_block 0 --template noctx.tmpl --git my_project

Point your browser to http://localhost:8000

Some features may not work, so you can disable them like this:

if platform.system() != "Emscripten":  # audio may not work on current version of emscripten
    init_audio_device()

This is all done by Pygbag rather than by me, so you should probably contact them with any issues. Carefully read all their documentation.

It does work for most of these examples

Startup without printing anything

import logging
logging.basicConfig(level=logging.ERROR)
import pyray
pyray.set_trace_log_level(pyray.LOG_ERROR)
pyray.init_window(100,100,"test")

App showcase

Tempest-raylib

KarabinerKeyboard

PyTaiko

DOOM-Clone

Tanki

Alloy Bloxel Editor

Add your app here!

RLZero

A related library (that is a work in progress!):

A simplified API for Raylib for use in education and to enable beginners to create 3d games

Help wanted

  • Converting more examples from C to Python
  • Testing on more platforms

License

Eclipse Public License, so you are free to statically link and use in non-free / proprietary / commercial projects!

Performance

If you need more performance, do in this order:

  1. Use Pypy rather than standard CPython. It is much, much faster and will make more difference than any other optimisations you might do.

  2. Every call to C is costly, so it's slightly faster if you use Python data structures and functions when calculating in your update loop and then only convert them to C data structures when you have to call the C functions for drawing.

  3. The raylib.* functions are potentially slightly faster than the pyray.* equivalents, so if you need a tiny bit more performance you can switch your inner loop functions to these.

  4. There is a version of Python that is faster than Pypy: GraalPy. However it's not fully compatible with all Python packages. It doesn't work with CFFI and so doesn't work with this binding. But it is compatible with the Java binding, Jaylib! There is an example of this here: https://github.com/electronstudio/megabunny/tree/master/raylib-python-jaylib

Bunnymark

Library Implementation Bunnies (60 FPS) Percentage
Raylib 5.0 C 180000 100%
Raylib Python CFFI 5.0.0.2 Python 3.12 10500 5.8%
Raylib Python CFFI 5.0.0.2 Pypy 3.10 95000 53%
Raylib 3.7 C 168100 100%
Raylib Python CFFI 3.7 Pypy 3.7 33800 20%
Raylib Python CFFI 3.7 Python 3.9 7700 4.5%
Raylib Python CFFI 3.7 Python 3.9 Nuitka 8600 5.1%
Raylib Python CFFI 3.7 Dynamic Python 3.9 6300 3.7%

See also https://github.com/electronstudio/megabunny/

Packaging your app

You can create a standalone binary using the Nuitka compiler. For example, here is how to package Bunnymark:

pip3 install nuitka
cd examples/textures
python3 -m nuitka --onefile --linux-onefile-icon resources/wabbit_alpha.png textures_bunnymark.py

Advert

RetroWar: 8-bit Party Battle is out now. Defeat up to 15 of your friends in a tournament of 80s-inspired retro mini games.

Coding Games With Pygame Zero & Python is a book for Python beginners.

Hall of shame!

Apparently comma.ai are now using raylib-python-cffi commercially and so have begun donating money to raylib but have chosen not to give anything to raylib-python-cffi. Yes it's perfectly legal usage, but it's not very nice behaviour. 😔

Release files for raylib 6.0.1.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for raylib 6.0.1.0
File Size Uploaded
raylib-6.0.1.0.tar.gz 189.9 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for raylib 6.0.1.0
File
raylib-6.0.1.0-pp311-pypy311_pp73-win_amd64.whl PyPy 3.11 PyPy 3.11 7.3 Windows x86-64 Details
raylib-6.0.1.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ x86-64 Details
raylib-6.0.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 macOS 10.15+ x86-64 Details
raylib-6.0.1.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
raylib-6.0.1.0-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
raylib-6.0.1.0-cp314-cp314-manylinux_2_35_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.35+ ARM64 Details
raylib-6.0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64 Details
raylib-6.0.1.0-cp314-cp314-manylinux2010_i686.manylinux_2_12_i686.whl CPython 3.14 CPython 3.14 Linux glibc 2.12+ x86-32 Details
raylib-6.0.1.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
raylib-6.0.1.0-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
raylib-6.0.1.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
raylib-6.0.1.0-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
raylib-6.0.1.0-cp313-cp313-manylinux_2_35_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.35+ ARM64 Details
raylib-6.0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
raylib-6.0.1.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.12+ x86-32 Details
raylib-6.0.1.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
raylib-6.0.1.0-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
raylib-6.0.1.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
raylib-6.0.1.0-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
raylib-6.0.1.0-cp312-cp312-manylinux_2_35_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.35+ ARM64 Details
raylib-6.0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
raylib-6.0.1.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.12+ x86-32 Details
raylib-6.0.1.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
raylib-6.0.1.0-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
raylib-6.0.1.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
raylib-6.0.1.0-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
raylib-6.0.1.0-cp311-cp311-manylinux_2_35_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.35+ ARM64 Details
raylib-6.0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
raylib-6.0.1.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.12+ x86-32 Details
raylib-6.0.1.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
raylib-6.0.1.0-cp311-cp311-macosx_10_13_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.13+ x86-64 Details
raylib-6.0.1.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
raylib-6.0.1.0-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
raylib-6.0.1.0-cp310-cp310-manylinux_2_35_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.35+ ARM64 Details
raylib-6.0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
raylib-6.0.1.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.12+ x86-32 Details
raylib-6.0.1.0-cp310-cp310-macosx_15_0_x86_64.whl CPython 3.10 CPython 3.10 macOS 15.0+ x86-64 Details
raylib-6.0.1.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
raylib-6.0.1.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
raylib-6.0.1.0-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
raylib-6.0.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
raylib-6.0.1.0-cp39-cp39-manylinux2010_i686.manylinux_2_12_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.12+ x86-32 Details
raylib-6.0.1.0-cp39-cp39-macosx_13_0_x86_64.whl CPython 3.9 CPython 3.9 macOS 13.0+ x86-64 Details
raylib-6.0.1.0-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
raylib-6.0.1.0-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
raylib-6.0.1.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
raylib-6.0.1.0-cp38-cp38-manylinux2010_i686.manylinux_2_12_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.12+ x86-32 Details
raylib-6.0.1.0-cp38-cp38-macosx_13_0_x86_64.whl CPython 3.8 CPython 3.8 macOS 13.0+ x86-64 Details
raylib-6.0.1.0-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
raylib-6.0.1.0-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
raylib-6.0.1.0-cp37-cp37m-manylinux2014_x86_64.manylinux_2_17_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
raylib-6.0.1.0-cp37-cp37m-manylinux2010_i686.manylinux_2_12_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-32 Details
raylib-6.0.1.0-cp37-cp37m-macosx_11_0_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 11.0+ x86-64 Details

Total release size: 106.7 MB

Release files / raylib-6.0.1.0.tar.gz

Download URL raylib-6.0.1.0.tar.gz
Size 189.9 kB
Tags Source
SHA-256 checksum
How to use checksums
6b96474d29d38642afceef5065d7d0d970489d2e2f7a91f0823be1337194734f
BLAKE2b-256 checksum
How to use checksums
8307e65284b0b86d81dc4de8ed44e90159a0079b9c013e91e280cd88e6f0bcac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / raylib-6.0.1.0-pp311-pypy311_pp73-win_amd64.whl

Download URL raylib-6.0.1.0-pp311-pypy311_pp73-win_amd64.whl
Size 2.2 MB
Tags PyPy 3.11 PyPy 3.11 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
83586aae24c6664e682891f7eb128bbbd26ef222905c2273379ade822d6054db
BLAKE2b-256 checksum
How to use checksums
eec32875ea284015e9c29643a0852742905f871e46334d9f1d906c450de5be21
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 PyPy/7.3.23

Release files / raylib-6.0.1.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL raylib-6.0.1.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 1.5 MB
Tags Linux glibc 2.17+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
a5af75bb626d306a5a4d046b095cdf274511a367a8d13595634c106524c47fb2
BLAKE2b-256 checksum
How to use checksums
55b1c15a552907c5ed9d99a9c8338d09e9ce4ee1fd907c2f0473e2fd52544016
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / raylib-6.0.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl

Download URL raylib-6.0.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Size 1.2 MB
Tags PyPy 3.11 PyPy 3.11 7.3 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
4faeb3b360f31e57394ddd06752e06a39054716a1c3e6f61c3a48d8f50045782
BLAKE2b-256 checksum
How to use checksums
4871d0f64ad46af6bb51d397110d2147d3359b7b924735aa99109edd2c157bec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 PyPy/7.3.23

Release files / raylib-6.0.1.0-cp314-cp314-win_amd64.whl

Download URL raylib-6.0.1.0-cp314-cp314-win_amd64.whl
Size 2.4 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
ec500a00012476b3588e1508f32cfb4f506341a5953542ed1d4c019e77e3c9f1
BLAKE2b-256 checksum
How to use checksums
2ad519c0ea180df9bf2461353f690be49e08c8bcd789c9b4a4629573592eb68f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.5

Release files / raylib-6.0.1.0-cp314-cp314-win32.whl

Download URL raylib-6.0.1.0-cp314-cp314-win32.whl
Size 2.0 MB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
fc2b8f2b538efbbd2b1e1be8930e0d235ec50547d142d47028f744ae9247ebab
BLAKE2b-256 checksum
How to use checksums
fda8ab0b14c233907505fa14c4d64abc1f955821e99c7cd06623935b704eec10
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.5

Release files / raylib-6.0.1.0-cp314-cp314-manylinux_2_35_aarch64.whl

Download URL raylib-6.0.1.0-cp314-cp314-manylinux_2_35_aarch64.whl
Size 2.4 MB
Tags CPython 3.14 Linux glibc 2.35+ ARM64
SHA-256 checksum
How to use checksums
27f71592301532b3a12d24fcab0582ac8df62940ab9fdd65bfb1352eb8bcf421
BLAKE2b-256 checksum
How to use checksums
3fc900d64b91451d094b88e2dbc0a705378a2dbf4fa4c82a72e4b846b1c1650b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.5

Release files / raylib-6.0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL raylib-6.0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 2.3 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
f320659cd292c53fabbc3149b71de884ab3f320a1604b1792c23ea8c0320b55e
BLAKE2b-256 checksum
How to use checksums
17d1f6ab90579ae6f1f17f8dbf899c5b32c27748f8319d7a786a005addfa8db0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / raylib-6.0.1.0-cp314-cp314-manylinux2010_i686.manylinux_2_12_i686.whl

Download URL raylib-6.0.1.0-cp314-cp314-manylinux2010_i686.manylinux_2_12_i686.whl
Size 2.1 MB
Tags CPython 3.14 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
f346610cee2bf3c7d8de4a53789a812c5aa1a8fb558e2c3d31739d5f20d3940e
BLAKE2b-256 checksum
How to use checksums
6d5453bbd9773c68c8c624a9d2813d7a0b44563f62dd191fc903046d36179177
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / raylib-6.0.1.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL raylib-6.0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Size 1.6 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
aa1a3e15a979b5de70c91c564c5b70583558d211969e8dbdac145a8f68061b60
BLAKE2b-256 checksum
How to use checksums
400f790ba239d26db78d4193ebe2d794e46c63ee927ff6944f903aa8a558eff6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.5

Release files / raylib-6.0.1.0-cp314-cp314-macosx_10_15_x86_64.whl

Download URL raylib-6.0.1.0-cp314-cp314-macosx_10_15_x86_64.whl
Size 1.7 MB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
b65a6634e5b4e85f98817ec8ce58b8a57baf852de671019e405203955f936acd
BLAKE2b-256 checksum
How to use checksums
0dacdd0d290680e5ebb654d082bc59e24f505ee69cfd1315a346a9fcdc67eebc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.14.5

Release files / raylib-6.0.1.0-cp313-cp313-win_amd64.whl

Download URL raylib-6.0.1.0-cp313-cp313-win_amd64.whl
Size 2.3 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
cd1c46e3d279844b40d5e9390c423b0737c2e6a38017f0ec538cbb498c1f73a8
BLAKE2b-256 checksum
How to use checksums
1f742440b507e1a350c3a71890cbf55e60ce9ca39d0eed997aef2d8900e97c39
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.13

Release files / raylib-6.0.1.0-cp313-cp313-win32.whl

Download URL raylib-6.0.1.0-cp313-cp313-win32.whl
Size 2.0 MB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
c739971289e402bca1132877c08f037319a095f04e9960cb3285901160d11cde
BLAKE2b-256 checksum
How to use checksums
92382207ba9df0edb6ce91a0930aa51284131836df6f55d4860504667a831a76
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.13

Release files / raylib-6.0.1.0-cp313-cp313-manylinux_2_35_aarch64.whl

Download URL raylib-6.0.1.0-cp313-cp313-manylinux_2_35_aarch64.whl
Size 2.4 MB
Tags CPython 3.13 Linux glibc 2.35+ ARM64
SHA-256 checksum
How to use checksums
bd4d02c1010c887ab278d4ccfa6bc797eddc9474123b28c4ae9bf0c5e008a782
BLAKE2b-256 checksum
How to use checksums
ef5f2e8362fade86dc8ae31270ef7e3328774531be8cd24ac5a0206ae25b69cc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.13

Release files / raylib-6.0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL raylib-6.0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 2.3 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
0c8e42eb66bcdfd08853d4ffa60c6751c41e414c8000304d445f84c5c8a71dcd
BLAKE2b-256 checksum
How to use checksums
b99bd91fcd06a179c219896e2a0ee88baeab2834842e5cb35528e48383f5cf1a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / raylib-6.0.1.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.whl

Download URL raylib-6.0.1.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.whl
Size 2.1 MB
Tags CPython 3.13 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
aad28383d0ee15bd66a24550af19eb32c558a3eeaddc352bc6c9e12176865486
BLAKE2b-256 checksum
How to use checksums
5ad28197c6050876b1200a4c157de847c166cc751f1b31b5bc3bb9494ebded3c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / raylib-6.0.1.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL raylib-6.0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Size 1.6 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7300d4cb8e8a735dd86bbe8d1f02b3e02d950f14e23edd297c6b39b311853c46
BLAKE2b-256 checksum
How to use checksums
f8ba5ab2d59438a772d42d032c9390ad5640c8e1db82070502e4258ccac448ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.13

Release files / raylib-6.0.1.0-cp313-cp313-macosx_10_13_x86_64.whl

Download URL raylib-6.0.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Size 1.7 MB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
598add2fe906ac198725489bf217eea6021b915ae8f70eb578639ac0ec0a7b61
BLAKE2b-256 checksum
How to use checksums
fa58c0cad15709579f2ac1fb2644644f4f33cff8db801c8f1ab9ed854cc0f5e5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.13

Release files / raylib-6.0.1.0-cp312-cp312-win_amd64.whl

Download URL raylib-6.0.1.0-cp312-cp312-win_amd64.whl
Size 2.3 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
64ee5407b3e222045a2b4e6c41ede77a7be05c90335e0679c4765d0e5bcf3ba6
BLAKE2b-256 checksum
How to use checksums
220e4db3d81795ac6af21f9b0b60135c0b20c90017d6ee32bca8b699773aa847
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.10

Release files / raylib-6.0.1.0-cp312-cp312-win32.whl

Download URL raylib-6.0.1.0-cp312-cp312-win32.whl
Size 2.0 MB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
6ede419ee4e486de6bc59aba1bfe8ec6171180d0ce9709f3fa9ce29a1da9894a
BLAKE2b-256 checksum
How to use checksums
95ada75aae370bceed040d9343d3447d3998c9a550e1047bdd39cdde967b796b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.10

Release files / raylib-6.0.1.0-cp312-cp312-manylinux_2_35_aarch64.whl

Download URL raylib-6.0.1.0-cp312-cp312-manylinux_2_35_aarch64.whl
Size 2.4 MB
Tags CPython 3.12 Linux glibc 2.35+ ARM64
SHA-256 checksum
How to use checksums
aa1efd0c52e88e295f0b53555255b0303003c6c477ee45ea7cea77fd0cfff666
BLAKE2b-256 checksum
How to use checksums
b55501b034683c1833b8a196f5388101e9dfb6bb96f8a44fe7e631ef23e03076
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.13

Release files / raylib-6.0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL raylib-6.0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 2.3 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
bcd224e184c5d64fb6d57bbdabc07124a6f64455ec711d748a0c148b3b26b914
BLAKE2b-256 checksum
How to use checksums
0929423bfefe93423b988e7fafb9642d20a15005ce8291eb5f4e3d70e8df8fce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / raylib-6.0.1.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.whl

Download URL raylib-6.0.1.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.whl
Size 2.1 MB
Tags CPython 3.12 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
f0d29347d78024995c54dfb4c5860f315b8ad4d5df7b3fc8934b39d78c283d95
BLAKE2b-256 checksum
How to use checksums
ce4a6fc3e30d041a70385747477ba94c1cf519f89c97979d2837c188bee810c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / raylib-6.0.1.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL raylib-6.0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Size 1.6 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
97c9912860a7bd063cdcf6e960d381ba7fc593f936e1565d300fa74a531675f8
BLAKE2b-256 checksum
How to use checksums
43a1f0160c805e5cb47bd1dbc9811d51ed0aba5a8220425e27cec1015a23a745
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.10

Release files / raylib-6.0.1.0-cp312-cp312-macosx_10_13_x86_64.whl

Download URL raylib-6.0.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Size 1.7 MB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
ca83b63aebb871f1b312bcf00f3d8309d774906e4de36bb72561dcf214d36928
BLAKE2b-256 checksum
How to use checksums
04270dc14affcf7d10b69631c9dee93ebe9ca816d5953f612d9d7fb1c2615358
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.10

Release files / raylib-6.0.1.0-cp311-cp311-win_amd64.whl

Download URL raylib-6.0.1.0-cp311-cp311-win_amd64.whl
Size 2.3 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
a665bd824128396f70435f959399d76c2bb460ce1867fb9d19b41490b70a0d2a
BLAKE2b-256 checksum
How to use checksums
1eaa8101849b08d087a3b8024b849ff1eb648cf41703375f19522a1d7819188f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.9

Release files / raylib-6.0.1.0-cp311-cp311-win32.whl

Download URL raylib-6.0.1.0-cp311-cp311-win32.whl
Size 2.0 MB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
56a7dcf0c5295e1e444397afe316d5c2bcd6ceb68947b96f343e0ad2b5781c6f
BLAKE2b-256 checksum
How to use checksums
85d0bacbc32afcbcda58cd33127b26209a2684806f46d2a39dbba97c8a80f552
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.9

Release files / raylib-6.0.1.0-cp311-cp311-manylinux_2_35_aarch64.whl

Download URL raylib-6.0.1.0-cp311-cp311-manylinux_2_35_aarch64.whl
Size 2.4 MB
Tags CPython 3.11 Linux glibc 2.35+ ARM64
SHA-256 checksum
How to use checksums
835427a4b9fe8700618ab57d36aa86d1b1f7a628d073fdaed55a8029ee0454a0
BLAKE2b-256 checksum
How to use checksums
59295cd7413dda9ce26375735f0b0f71093abdfca3acbe6fb4487942e0fb270e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.15

Release files / raylib-6.0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL raylib-6.0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 2.3 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
6b126a8b9e9a0d36dc796fb0ae1bd7473464a4b126315e332079e5eca7215116
BLAKE2b-256 checksum
How to use checksums
d52f783a6c6dda1f271a1625bf5f00c6e87289d18082b7acee0c6a6b23a942c2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / raylib-6.0.1.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.whl

Download URL raylib-6.0.1.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.whl
Size 2.1 MB
Tags CPython 3.11 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
65627f6700f65dcd6e8e2cea6e9dec1943cd877c6c7ea307033a2f6b68bceffc
BLAKE2b-256 checksum
How to use checksums
6438844609cd88d337ba10db473a0a996f1546b71544648d6ad89457076455ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / raylib-6.0.1.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL raylib-6.0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Size 1.6 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2749241d539f0b314939a5b9d6d7cc950404f77f299f79fab9f449091b941fbd
BLAKE2b-256 checksum
How to use checksums
23defcd00b4bd31a8b9ea82ec97895dfadbcafaaba5d1565b27e5d71a015fdeb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.9

Release files / raylib-6.0.1.0-cp311-cp311-macosx_10_13_x86_64.whl

Download URL raylib-6.0.1.0-cp311-cp311-macosx_10_13_x86_64.whl
Size 1.7 MB
Tags CPython 3.11 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
31bba20aa8b2edfbe183e45a04000e060406fcd95c40dd6532378654ab87b256
BLAKE2b-256 checksum
How to use checksums
e85bdaa7aeda67b2f1b46c9cd0944b30c028faae220e22dcb97cfa0217deb8ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.9

Release files / raylib-6.0.1.0-cp310-cp310-win_amd64.whl

Download URL raylib-6.0.1.0-cp310-cp310-win_amd64.whl
Size 2.3 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
da30a955c8ea23a46c215ee6b29fb48ec01336f52cf4fce09c2f25866b332487
BLAKE2b-256 checksum
How to use checksums
63f2011b8c11a8088ad9bdf93be73abcffb31c15cfffd4c04454dc9bd463193d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.11

Release files / raylib-6.0.1.0-cp310-cp310-win32.whl

Download URL raylib-6.0.1.0-cp310-cp310-win32.whl
Size 2.0 MB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
97c42d7c1123c4c492d6d37e0245e32ef776cb196103583e501c8f147878ffd4
BLAKE2b-256 checksum
How to use checksums
7f89cf025d6ea8227b862549301a2dbbbb735acd7246df7a1d2a464df7f977d5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.11

Release files / raylib-6.0.1.0-cp310-cp310-manylinux_2_35_aarch64.whl

Download URL raylib-6.0.1.0-cp310-cp310-manylinux_2_35_aarch64.whl
Size 2.4 MB
Tags CPython 3.10 Linux glibc 2.35+ ARM64
SHA-256 checksum
How to use checksums
71cf054909be77b47b2e31ed8994d7f3bdccbb91bf8476bca071c54b252d1bf0
BLAKE2b-256 checksum
How to use checksums
d9e5933d4ade0a5764fb3330566cffbe46f57f32df1792577ec5228cf895669d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.20

Release files / raylib-6.0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL raylib-6.0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 2.3 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
25024839be56443e5f196854230c6f10988769707c3f446c33f6781e7b75785a
BLAKE2b-256 checksum
How to use checksums
d03eb09e17fc6935ef9f9f16fea08b591b542817f24363ff71a0f04fbf0d40db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / raylib-6.0.1.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.whl

Download URL raylib-6.0.1.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.whl
Size 2.1 MB
Tags CPython 3.10 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
ed6c57bcc690c64f3efbce9859492c60c96e199b2dac67f810f7d70ab2f1975b
BLAKE2b-256 checksum
How to use checksums
9efb9491799dec92d9b538869d507cf6adbbd43de0cdef6cdb284ad1e6df27f0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / raylib-6.0.1.0-cp310-cp310-macosx_15_0_x86_64.whl

Download URL raylib-6.0.1.0-cp310-cp310-macosx_15_0_x86_64.whl
Size 1.4 MB
Tags CPython 3.10 macOS 15.0+ x86-64
SHA-256 checksum
How to use checksums
8eb12c8587ec76cfb2daf14695fc904fab451af1391cf5f0fe2ac55b9bed192e
BLAKE2b-256 checksum
How to use checksums
9bff702835bf1cab026f778422e912d5469347875315570ec21d715943728c1a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.20

Release files / raylib-6.0.1.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL raylib-6.0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Size 1.6 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5cb00a1abd9f9e760b0853bdc5e97547c215aee8f2fe48a8443d103ca24df7da
BLAKE2b-256 checksum
How to use checksums
6516df7c4550553441cfe9912bdd65879338c126b620654626720ba652e3b717
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.10.11

Release files / raylib-6.0.1.0-cp39-cp39-win_amd64.whl

Download URL raylib-6.0.1.0-cp39-cp39-win_amd64.whl
Size 2.3 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
c7f817f7f0233d6813a510ebc17758b111d9ea072d40f714d21ecf77e98b285f
BLAKE2b-256 checksum
How to use checksums
e84c72ea508ecda5f0e757a6a86aa589102abd9c08c69f1d0992b03442664c23
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.13

Release files / raylib-6.0.1.0-cp39-cp39-win32.whl

Download URL raylib-6.0.1.0-cp39-cp39-win32.whl
Size 2.0 MB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
ad17945bb3546cc0639b1e8ec797d66ec3e80228d76297788f4bd8b07a4d37e9
BLAKE2b-256 checksum
How to use checksums
5851740ffe6fcd03a189aaa6b294e3a8fa4afcb78b2dff4ad22c8dde0a1ba0f6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.13

Release files / raylib-6.0.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL raylib-6.0.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 2.3 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
b15be73b0b2b75108216c65dc25dde83f941afe969183f275f4785777c8548e5
BLAKE2b-256 checksum
How to use checksums
d6613df563805ea2e9aad1808527087c2ea8f7982856fc4f0567f19450148581
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / raylib-6.0.1.0-cp39-cp39-manylinux2010_i686.manylinux_2_12_i686.whl

Download URL raylib-6.0.1.0-cp39-cp39-manylinux2010_i686.manylinux_2_12_i686.whl
Size 2.1 MB
Tags CPython 3.9 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
dbe13edd7120f254dc918cf439495520c220657dadc020f820df5faaa729a225
BLAKE2b-256 checksum
How to use checksums
81846bf540619a7bd953afc4623dd2567bbfb08d5145dee5bd0b876bf49bde8c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / raylib-6.0.1.0-cp39-cp39-macosx_13_0_x86_64.whl

Download URL raylib-6.0.1.0-cp39-cp39-macosx_13_0_x86_64.whl
Size 1.4 MB
Tags CPython 3.9 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
2c292c92325f6c7606f21e4919907cb28ce5156539cf2b99c7fe0f827b7f908e
BLAKE2b-256 checksum
How to use checksums
ba546355b68958b28c27bc51ec28bbc2d9dd8113347dce6da6cd7bf86b9f4c4d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / raylib-6.0.1.0-cp38-cp38-win_amd64.whl

Download URL raylib-6.0.1.0-cp38-cp38-win_amd64.whl
Size 2.3 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
a1ecb799d059418153390be653aa052cc8091fc28fe84ef2d71455f3a00f45b2
BLAKE2b-256 checksum
How to use checksums
89980bf633b8122af79f0197180ea6f3594e9f6d9820c33f259bcd77d530888b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.8.10

Release files / raylib-6.0.1.0-cp38-cp38-win32.whl

Download URL raylib-6.0.1.0-cp38-cp38-win32.whl
Size 2.0 MB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
282e14a81f9e1504dc6d9f838ddfe81148938a5a7a0b279e045deea4017a1cb2
BLAKE2b-256 checksum
How to use checksums
c6d4c09a93fad7cab151c424041f95fe304d1df9c572ed6c21cf668e4b6f4d7c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.8.10

Release files / raylib-6.0.1.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL raylib-6.0.1.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 2.3 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5b3c428c7c675491261f85fdcc4c3ff50144a9031a2274a3b6f6142996aa732f
BLAKE2b-256 checksum
How to use checksums
d447542755956d7cba0fbaac924a3c5005f318d01927bfcfc5efef79a73d71d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / raylib-6.0.1.0-cp38-cp38-manylinux2010_i686.manylinux_2_12_i686.whl

Download URL raylib-6.0.1.0-cp38-cp38-manylinux2010_i686.manylinux_2_12_i686.whl
Size 2.1 MB
Tags CPython 3.8 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
ff6545b7454afca5ce2013098abdb4f55229f85ce7188bc0d4d425f666a55a07
BLAKE2b-256 checksum
How to use checksums
626b69261ee35442ba751cd5264cb89086e5095100ece33c9ab66bccd704188f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / raylib-6.0.1.0-cp38-cp38-macosx_13_0_x86_64.whl

Download URL raylib-6.0.1.0-cp38-cp38-macosx_13_0_x86_64.whl
Size 1.4 MB
Tags CPython 3.8 macOS 13.0+ x86-64
SHA-256 checksum
How to use checksums
e8f506f72177375a2f54fcfce116aaa92315641c1c1f1ad34625697d2f86e913
BLAKE2b-256 checksum
How to use checksums
3f33a6e9c42a8eb8a3771badd6967edb1cdf3c0d54cb4bf8daf9f4879c57062b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.8.18

Release files / raylib-6.0.1.0-cp37-cp37m-win_amd64.whl

Download URL raylib-6.0.1.0-cp37-cp37m-win_amd64.whl
Size 2.3 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
25f26fd6d7cba9a58f7e5c5a9549584d6874b75a0f65a71c3665f5313a3ac2c3
BLAKE2b-256 checksum
How to use checksums
4e5f4506344bc3407c73cde7b958db26eb2c894306e1acc2b0fab7666f06927e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.9

Release files / raylib-6.0.1.0-cp37-cp37m-win32.whl

Download URL raylib-6.0.1.0-cp37-cp37m-win32.whl
Size 2.0 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
296b95868f1b077d8890f00aaf7383fa46d41ca70a88343b7bdaa68d8877f504
BLAKE2b-256 checksum
How to use checksums
a7b51600bb077687e820bf83292e43337e8722c9c48d38f35887e00294c913e4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.9

Release files / raylib-6.0.1.0-cp37-cp37m-manylinux2014_x86_64.manylinux_2_17_x86_64.whl

Download URL raylib-6.0.1.0-cp37-cp37m-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Size 2.3 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
85aa6dce7ee32d476974ccf1769538dc0502631a80620491a432ca3b190ed4b6
BLAKE2b-256 checksum
How to use checksums
19c11ba6acb5e67b88c2c148afa7067c65112369b3fcb260a89724c73a405840
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / raylib-6.0.1.0-cp37-cp37m-manylinux2010_i686.manylinux_2_12_i686.whl

Download URL raylib-6.0.1.0-cp37-cp37m-manylinux2010_i686.manylinux_2_12_i686.whl
Size 2.1 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
a1e5d1e6f2a4aeee674827b72cad0976345cf07360d69252f600dd687e78d2f1
BLAKE2b-256 checksum
How to use checksums
589d06212875367649345db21853f290662f1b1df683d01d4d35140dccee986a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.9

Release files / raylib-6.0.1.0-cp37-cp37m-macosx_11_0_x86_64.whl

Download URL raylib-6.0.1.0-cp37-cp37m-macosx_11_0_x86_64.whl
Size 1.4 MB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
d91f0f4a8e83dc668657fe9c789fcf7772f46e9d85ac9baed2d321c382d0e10f
BLAKE2b-256 checksum
How to use checksums
2247088d171da3c6c71919d29cac0e9cdc7d7426cdddef94c9c88f96b5b3febe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.17

Release history Release notifications | RSS feed

This release

6.0.1.0 This release

54 release files

3.7.0

7 release files

3.5.0

5 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page