Create a Virtual Environment (Highly Recommended):
This isolates your project's dependencies from your system's global Python environment, preventing conflicts.
python-mvenvvenv
Activate the Virtual Environment:
The command to activate depends on your operating system:
Linux / macOS:
sourcevenv/bin/activate
Windows:
venv\Scripts\activate
You'll see (venv) prepended to your terminal prompt, indicating the environment is active.
Install AgentiPy:
With your virtual environment activated, install AgentiPy using pip:
This command downloads and installs the latest stable version of AgentiPy and its dependencies.
Langchain (Optional, for AI Integration): If your project involves integrating AgentiPy with AI agent frameworks like Langchain, you'll need to install it separately:
Wallet with Private Keys: To authorize and send transactions on the blockchain, you will need access to a wallet with its private keys. Security is paramount: never hardcode your private keys directly into your scripts. It is strongly recommended to use environment variables or a secure key management system.