Prime Intellect CLI + SDK
raw JSON → 0.6.3 verified Sat May 09 auth: no python
Prime Intellect CLI + SDK for interacting with Prime Intellect platform. Currently at version 0.6.3, actively maintained with frequent releases. Requires Python 3.10 to 3.13.
pip install prime Common errors
error ModuleNotFoundError: No module named 'prime' ↓
cause Library not installed or installed in wrong environment.
fix
Run 'pip install prime' in your active virtual environment.
error AttributeError: module 'prime' has no attribute 'Prime' ↓
cause Using wrong import style ('import prime' instead of 'from prime import Prime').
fix
Use 'from prime import Prime' to import the main class.
Warnings
gotcha The library name 'prime' might conflict with other Python packages. Use a virtual environment to avoid clashes. ↓
fix Create and activate a virtual environment before installing.
deprecated Some endpoints or methods may be deprecated as the SDK evolves. Check changelog on GitHub. ↓
fix Update to latest version and review breaking changes.
Install
pip install prime==0.6.3 Imports
- Prime wrong
import primecorrectfrom prime import Prime
Quickstart
from prime import Prime
client = Prime()
# Use client for platform interactions
print(client.models.list())