Sign inSign up

ikeszvpvb9ye/python3.13-nogil-jit

By ikeszvpvb9ye

Updated almost 2 years ago

python3.13-nogil-jit

Image
Languages & frameworks
1

971

ikeszvpvb9ye/python3.13-nogil-jit repository overview

ikeszvpvb9ye package for Python

Disable GIL, JIT On

Special Thanks

RealPython
https://realpython.com/python313-free-threading-jit/#build-python-with-free-threading-and-jit-support

What is Python?

Python is a programming language that lets you work quickly and integrate systems more effectively.

Overview of Python ⁠Trademarks: This software listing is packaged by ikeszvpvb9ye. The respective trademarks mentioned in the offering are owned by the respective companies, and use of them does not imply any affiliation or endorsement.

TL;DR

docker run -it --name python3.13tj ikeszvpvb9ye/python3.13-nogil-jit:latest python3.13

Other UseCases

Create a Dockerfile for your project
FROM ikeszvpvb9ye/python3.13-nogil-jit:3.13tj
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip3.13 install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python3.13", "./your-script.py"]  # Any py-script
CMD [ "python3.13", "manage.py runserver 127.0.0.1:80"]
                   # django flask example

Build and run

docker build -t my-python-app .
docker run -it --name my-running-app my-python-app
Mount project folder and open port
docker run -it --name my-running-app my-python-app \
     -v /project/on/host:/usr/src/app \ 
     -p 8080:80

And open your project on host machine https://localhost:8080

License

View license information for Python 3⁠. This Image is modified from the official Ubuntu Image.
View Ubuntu license information

Tag summary

Content type

Image

Digest

sha256:13f63e889

Size

806.9 MB

Last updated

almost 2 years ago

docker pull ikeszvpvb9ye/python3.13-nogil-jit