Spaces:
Runtime error
Runtime error
fix harp requirement (again) (#12)
Browse files- forcefully install pyharp (0277a0d27eeae179ddb8ded5c0f2217df025222e)
- pyharp (fafb9281728ca31012296594769a85017ba57daa)
- fix (e5be3f0a5ae20a212adc2f83ce1aac70497aa469)
- why is harp not pip installing -e? (ee9f016b313d9afd2df7564257df26b37806602e)
- add -e (5af261c9ea68df707e6a02fbfb7d4cc62c049b43)
- add -e (ead8b8f13bf08cdc0b61b12e7da7fdaedbf08183)
- app.py +3 -0
- requirements.txt +1 -1
app.py
CHANGED
@@ -1,6 +1,9 @@
|
|
1 |
# huggingface space exclusive
|
2 |
import os
|
3 |
|
|
|
|
|
|
|
4 |
os.system('pip install cython')
|
5 |
os.system('pip install madmom')
|
6 |
|
|
|
1 |
# huggingface space exclusive
|
2 |
import os
|
3 |
|
4 |
+
# print("installing pyharp")
|
5 |
+
# os.system('pip install "pyharp@git+https://github.com/audacitorch/pyharp.git"')
|
6 |
+
# print("installing madmom")
|
7 |
os.system('pip install cython')
|
8 |
os.system('pip install madmom')
|
9 |
|
requirements.txt
CHANGED
@@ -6,5 +6,5 @@ loralib
|
|
6 |
wavebeat @ git+https://github.com/hugofloresgarcia/wavebeat
|
7 |
lac @ git+https://github.com/hugofloresgarcia/lac.git
|
8 |
descript-audiotools @ git+https://github.com/descriptinc/audiotools.git@0.7.2
|
9 |
-
|
10 |
torch_pitch_shift
|
|
|
6 |
wavebeat @ git+https://github.com/hugofloresgarcia/wavebeat
|
7 |
lac @ git+https://github.com/hugofloresgarcia/lac.git
|
8 |
descript-audiotools @ git+https://github.com/descriptinc/audiotools.git@0.7.2
|
9 |
+
-e git+https://github.com/audacitorch/pyharp.git#egg=pyharp
|
10 |
torch_pitch_shift
|