gpt-engineer GitHub Repo

Installation Development Version

Video Installation

First create and Activate Python Virtual Environment (Recommended)

Create Virtual Environment

To Create

python3 -m venv gpt-env
python3 -m venv ${NAME_OF_VIRTUAL_ENV}

To Activate

source gpt-env/bin/activate
source  ${NAME_OF_VIRTUAL_ENV}/bin/activate

ref

Link to original

Clone the Repo

gpt-engineer GitHub Repo

git clone https://github.com/AntonOsika/gpt-engineer.git
 
cd gpt-engineer
Install dependencies and activate environment

Within gpt-engineer directory.

make install 
 
source venv/bin/activate
OpenAPI key
export OPENAI_API_KEY=[your api key]
Link to original