feel free to improve the code / suggest improvements
To get started with this project, you'll need to clone the repository and set up a virtual environment. This will allow you to install the required dependencies without affecting your system-wide Python installation.
Before you can set up a virtual environment, you'll need to have Python installed on your system. You can download Python from the official website: https://www.python.org/downloads/
Run the following command to clone the repository:
git clone https://github.com/xtekky/chatgpt-clone.git
To set up a virtual environment, follow these steps:
- Navigate to the root directory of your project.
cd chatgpt-clone
- Run the following command to create a new virtual environment:
python -m venv venv
- Activate the virtual environment by running the following command:
source venv/bin/activate
If you're on Windows, the command will be slightly different:
venv\Scripts\activate
- Install the required dependencies by running the following command:
pip install -r requirements.txt
To run the application, make sure the virtual environment is active and run the following command:
python run.py