First create and Activate Python Virtual Environment (Recommended)
Create Virtual Environment
To Create
python3 -m venv gpt-envpython3 -m venv ${NAME_OF_VIRTUAL_ENV}To Activate
source gpt-env/bin/activateLink to original source ${NAME_OF_VIRTUAL_ENV}/bin/activate
Clone the Repo
git clone https://github.com/AntonOsika/gpt-engineer.git
cd gpt-engineerInstall dependencies and activate environment
Within gpt-engineer directory.
make install
source venv/bin/activateOpenAPI key
export OPENAI_API_KEY=[your api key]