Verify Installation
After completing the installation, it's crucial to confirm that AgentiPy has been installed correctly and is accessible within your Python environment.
Follow these simple steps:
Launch a Python Interpreter: Ensure your virtual environment (venv) is activated. Then, start an interactive Python session:
python # or python3
Import AgentiPy and Check Version: Once the Python interpreter loads, execute the following commands:
import agentipy print(agentipy.__version__)
Upon successful installation, you should see an output displaying the installed AgentiPy version (e.g., 2.0.2). If you encounter any ModuleNotFoundError or other errors, please revisit the Installation and Setup section to ensure all prerequisites were met and the installation com
Last updated