Troubleshooting

Installing ACE Agent Wheel in Python 3.11

Q: While trying to install aceagent wheel on Python 3.11, the installation crashes with an error about building a wheel file for annoy. How do I fix this?

A: If you encounter issues related to the failure of building a wheel file for annoy, run the following command and rebuild the virtual environment.

sudo apt-get install python3.11-dev
python3.11 -m venv ace
source ace/bin/activate

Installing ACE Agent Wheel in Python 3.12

Q: How can I create a virtual environment with Python 3.12 to install aceagent wheel?

A: You can create a virtual environment with Python 3.12 using the following command.

sudo apt-get install python3.12-distutils python3.12-dev python3.12-venv

python3.12 -m ensurepip --upgrade
python3.12 -m venv ace
source ace/bin/activate