Spaces:
Running
on
Zero
Running
on
Zero
File size: 308 Bytes
e198246 |
1 2 3 4 5 6 7 8 9 |
import os requirement_path = "requirements.txt" install_requires = [] if os.path.isfile(requirement_path): with open(requirement_path) as f: install_requires = f.read().splitlines() setup(name="mypackage", install_requires=install_requires, [...]) apt-get update && apt-get install -y fluidsynth |