https://github.com/dwidevelopes/snake-python
games snakes competitif and playing my friend
https://github.com/dwidevelopes/snake-python
Last synced: 11 months ago
JSON representation
games snakes competitif and playing my friend
- Host: GitHub
- URL: https://github.com/dwidevelopes/snake-python
- Owner: DwiDevelopes
- Created: 2025-06-08T23:49:49.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-09T00:28:36.000Z (about 1 year ago)
- Last Synced: 2025-06-09T01:18:59.264Z (about 1 year ago)
- Language: Python
- Size: 18.9 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Games Playing Minicraft Snakes

# Complete Installation Guide for Python in Termux
## Initial Setup
1. Install Termux from F-Droid store (recommended) or Google Play Store
2. Launch Termux and update the system:
```bash
apt update && apt upgrade -y
```
3. Setup storage access:
```bash
termux-setup-storage
```
## Required Packages Installation
4. Install essential packages:
```bash
pkg install python -y
pkg install python-pip -y
pkg install git -y
pkg install nano -y
```
5. Install Python dependencies:
```bash
pip install --upgrade pip
pip install requests
pip install pillow
pip install bs4
```
## Script Setup & Execution
6. Navigate to your working directory:
```bash
cd /sdcard/your/directory
```
7. Set proper permissions:
```bash
chmod +x main.py
```
8. Run your script:
```bash
python main.py
```
## Troubleshooting
- Permission denied error: Run `termux-setup-storage`
- Pip installation fails: Try `pkg install python-pip`
- Package conflicts: Run `pip install --upgrade package_name`
- Storage access issues: Verify Android permissions for Termux
**Note:**
- Always run updates periodically
- Keep Python and pip updated
- Check internet connectivity for installations