File size: 319 Bytes
dd52df4
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import os

# Clone the GitHub repository
os.system("git clone https://github.com/taslim19/Seonari")

# Navigate into the cloned repository directory
os.chdir("Seonari")

# Install dependencies from requirements.txt
os.system("pip install -r requirements.txt")

# Run the main Python file
os.system("python3 -m Powers")