9 lines
217 B
Bash
Executable File
9 lines
217 B
Bash
Executable File
#!/bin/bash
|
|
python3 -m venv venv
|
|
source venv/bin/activate
|
|
pip install pygame pyinstaller
|
|
rm -rf build dist *.spec
|
|
pyinstaller --onefile --windowed --name SolarSystem main.py
|
|
cp dist/SolarSystem .
|
|
chmod +x SolarSystem
|