Installation
Last updated
Last updated
The Paradox Framework is a Python-based modular framework designed for deploying, interacting with, and managing DeFi agents, Solscan analytics, and AI models. The framework also supports posting to Discord, Telegram, or Twitter and can be managed through Discord or Telegram. This guide will walk you through the installation process.
Before installing and using the Paradox Framework, ensure you have the following:
Install the latest version of Python (3.8 or higher). You can download it from the . After installation, confirm the version using:
Command Prompt (Windows) or Terminal (Linux/Mac):
If python
doesn’t work on Windows, try:
If the command returns a version number (e.g., Python 3.10.6
), Python is installed correctly.
Pip, the Python package manager, comes with Python. Verify the installation by running:
If it returns a version (e.g., pip 21.2.4
), Pip is ready to use.
Download and install as the preferred development environment for working with the Paradox Framework.
To ensure the Paradox Framework runs correctly, install the required dependencies directly in your IDE. These libraries handle blockchain interactions, AI processing, and data analysis.
Paradox relies on essential libraries to interact with blockchain networks, manage API requests, and handle environment variables. Install the following:
The framework includes proprietary transformers, but PyTorch is required for AI processing. Install based on your system:
For CPU-only:
For GPU acceleration with CUDA:
Paradox processes and analyzes blockchain data using these libraries:
Paradox uses FastAPI for the backend and Uvicorn to run the API server. Install them with:
If you need to store blockchain data, install SQLAlchemy for database integration:
To install everything in one step, run:
After installation, the framework will be ready for use.