I got the following error when I was installing spleeter via pip. I didn't had setuptools installed on my system previously. Just to let you know.
ERROR: tensorboard 1.14.0 has requirement setuptools>=41.0.0, but you'll have setuptools 40.8.0 which is incompatible.
Which version of Python are you using and which OS please ?
In general, the command to update setuptools would be pip install -U setuptools. Use pip3 if that's what you use.
@Faylixe macOS Mojave 10.14.6 & Python 3.7.4
I ran "pip3 install spleeter"
Probably it'll be ok when I update the setuptools package explicitly. I wanted to notify developers to update the "requirments.txt" file accordingly so that it would install the newer versions of the setuptools package during initial install.
You should then try
pip install -U setuptools
as suggested by @aadibajpai or
pip3 install setuptools>=41.0.0
We will update PyPi package to reflect the setuptools dep explicitly
We will update
PyPipackage to reflect thesetuptoolsdep explicitly
Since it's a subdependency if you start going down this rabbit hole then it might be too deep :P
Imho the error message is self explanatory :)
Well actually we are using setuptools in Spleeter installation script so it still make sense :)
Well actually we are using
setuptoolsin _Spleeter_ installation script so it still make sense :)
You mean here (https://github.com/deezer/spleeter/blob/master/setup.py)?