About This Course:
- 🚀 Python virtual environment setup
- 💬 Socket.io and Flask integration
- ✨ JavaScript on the frontend
- ✅ Deployment at the end
- Clone the repository:
git clone https://github.com/burakorkmez/python-chat.git
- Navigate to the project directory:
cd python-chat
- Create a virtual environment:
- On macOS and Linux:
python3 -m venv venv
- On Windows:
python -m venv venv
- Activate the virtual environment:
- On macOS and Linux:
source venv/bin/activate
- On Windows:
venv\Scripts\activate
- Install the dependencies:
- On macOS and Linux:
pip3 install -r requirements.txt
- On Windows:
pip install -r requirements.txt
- Run the app:
- On macOS and Linux:
python3 app.py
- On Windows:
python app.py