mirror of
https://github.com/Anjok07/ultimatevocalremovergui.git
synced 2024-11-13 18:40:48 +01:00
6 lines
87 B
Bash
6 lines
87 B
Bash
#!/bin/bash
|
|
|
|
while read package; do
|
|
pip install "$package"
|
|
done < requirements.txt
|