Installation GuideΒΆ
Follow these steps to install and run Galaxy Pulse on your local machine:
Clone the GitHub repository:
git clone https://github.com/username/GalaxyPulse.git cd GalaxyPulse
Create and activate a virtual environment:
python3 -m venv .venv source .venv/bin/activate # On Windows: .venv\Scripts\activate
Install the dependencies:
pip install -r requirements.txt
Run the game:
python main.py
### Running on Android To run Galaxy Pulse on Android, follow these additional steps:
Install Buildozer (if not already installed):
pip install buildozer
Build the APK:
buildozer init buildozer -v android debug
Install the APK on your Android device:
adb install bin/*.apk
Galaxy Pulse should now run on your Android device. For more details, check the Buildozer documentation.
### Troubleshooting - If you encounter issues during installation, make sure all dependencies in requirements.txt are installed correctly. - For issues related to Kivy or platform compatibility, refer to the official [Kivy Documentation](https://kivy.org/doc/stable/).