git clone https://github.com/jbexta/AgentPilot.git
cd AgentPilot
python build.py
./dist/__main__
cd ~/PycharmProjects
git clone https://github.com/jbexta/AgentPilot.git
cd AgentPilot
pyenv install 3.10.11
pyenv virtualenv 3.10.11 agentpilotvenv
pyenv activate agentpilotvenv
pip install -r requirements.txt
pip install pyinstaller
pyinstaller build.spec
This will create a dist
folder in the project root directory. The executable will be in the dist
folder.
cp data.db dist/data.db
cp -r docs/avatars dist/avatars
./dist/__main__
...