Alien Ivasion made by python pygame
- Install a Python Interpreter: Install python interpreter in the Python Official Website if you do not have
- Navigate to the working directory: open terminal and navigate to the working directory
- Create the Virtual Environment: Use Python's
venv
module to create a virtual environment. You can name the environment anything you like, commonlyvenv
orenv
python -m venv venv
- Activate the Virtual Environment:
- On Windows:
venv\Scripts\activate
- On Unix or MacOS:
source venv/bin/activate
- On Windows:
- Install Requirements: With the virtual environment activated, use
pip
to install all the necessary packages listed in therequirements.txt
file:pip install -r requirements.txt
- Deactivating the Virtual Environment: Once you're done working, you can deactivate the virtual environment:
deactivate
This project is licensed under the MIT License - see the LICENSE file for details.