Thank you TC_neva, for your respond, for the advises and the tutorial about AUR
When I am in the folder where UVR is extracted, I have to run a file named ‘UVER.py’, so I type the simple command $ python UVR.py
and the output is:
Traceback (most recent call last):
File "/home/stathis/ultimatevocalremovergui-master/UVR.py", line 4, in <module>
import audioread
ModuleNotFoundError: No module named 'audioread'
So I put in comment the command import audioread
from the ‘UVR.py’ file to check also if other libraries are missing. If you need more information about the code of UVR.py click here.
Here are the outputs every time I put in comment any Import command:
# import audioread
Traceback (most recent call last):
File "/home/stathis/ultimatevocalremovergui-master/UVR.py", line 8, in <module>
import librosa
ModuleNotFoundError: No module named 'librosa'
# import librosa
Traceback (most recent call last):
File "/home/stathis/ultimatevocalremovergui-master/UVR.py", line 10, in <module>
import natsort
ModuleNotFoundError: No module named 'natsort'
# import natsort
Traceback (most recent call last):
File "/home/stathis/ultimatevocalremovergui-master/UVR.py", line 14, in <module>
from pyglet import font as pyglet_font
ModuleNotFoundError: No module named 'pyglet'
The rest of the missing libraries are written above.
About the AUR:
I started with the library audioread.
I ran the command
$ git clone https://aur.archlinux.org/python-audioread.git
and the output was
Cloning into 'python-audioread'...
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
remote: Enumerating objects: 41, done.
remote: Counting objects: 100% (41/41), done.
remote: Compressing objects: 100% (34/34), done.
remote: Total 41 (delta 6), reused 41 (delta 6), pack-reused 0 (from 0)
Receiving objects: 100% (41/41), 8.47 KiB | 8.47 MiB/s, done.
Resolving deltas: 100% (6/6), done.
which is not enough because I have the same output when I run $ python UVR.py
. Is there anything else I have to do?
Ask me about more details if it’s necessary!