Pyston-Autoload automatically detects and enables the Pyston JIT compiler when imported, aiming to provide performance improvements for Python applications. It acts as a bootstrap mechanism for the Pyston runtime. The current version is 2.3.5, and it generally follows the release cadence of the underlying Pyston project.
pip install pyston-autoloadVerified import paths — ran on the pinned version, not inferred.
This quickstart demonstrates the core usage of `pyston-autoload`: a simple import at the beginning of your script. This import will automatically enable the Pyston JIT if a compatible Pyston runtime is found in the environment. If Pyston is not detected, the import will succeed, but the JIT will not be active.
Ensure Pyston (or Pyston-Lite) is correctly installed for your system architecture and distribution *before* installing and importing `pyston-autoload`.
Choose the correct autoload package based on your Pyston installation strategy: `pyston-autoload` for full Pyston, `pyston_lite_autoload` if you're installing `pyston_lite` via `pip install pyston_lite_autoload`.
Place `import pyston_autoload` at the top of your primary Python script or module that runs your application.
Upgrade your operating system to Ubuntu 18.04 or newer, or use a portable Pyston release based on a supported OS version.
When installing the Pyston runtime, download the package corresponding to your CPU architecture (e.g., `amd64` or `arm64`). This is particularly important for the full Pyston distribution.
No dependency data recorded yet.