I followed the Quick Start directions, but I get this error when I try using spleeter. Did I miss something? Do I need to manually add spleeter to my system path? I'm on Windows 10.

Hi Evan,
Thanks, we'll look into it. The spleeter shortcut has been tested on Linux/MacOS but not on Windows yet.
In the mean time you should be able to use the longer version python -m spleeter separate
Let us know if you still have issues.
Did you tried to run spleeter.exe instead ? Windows haven't been tested a lot, but command line script is generated by setuptools and thus should create a valid Windows executable.
pip install pyssl,
then install the rest of the pip requirements from yaml file
I'm having the same issue. The longer command python -m spleeter also returns 'no module named spleeter'
The problem here is that your Conda environment installation was not ok from the beginning.
Running setup.py install for simplejson: finished with status 'error'
Since your Conda install meet some error then Spleeter was installed leading you to the error you found :).
env: anaconda3 fresh installation on Win10
I was able to complete conda install command without erros, but nevertheless I got
`(spleeter-gpu) E:\DATA\PROGspleeter>python -m spleeter separate -i audio_example.mp3 -p spleeter:2stems -o output
Traceback (most recent call last):
File "D:\Programme\Anaconda3\envsspleeter-gpu\lib\runpy.py", line 193, in _run_module_as_main
"__main__", mod_spec)
File "D:\Programme\Anaconda3\envsspleeter-gpu\lib\runpy.py", line 85, in _run_code
exec(code, run_globals)
File "E:\DATA\PROGspleeterspleeter__main__.py", line 51, in
entrypoint()
File "E:\DATA\PROGspleeterspleeter__main__.py", line 47, in entrypoint
main(sys.argv)
File "E:\DATA\PROGspleeterspleeter__main__.py", line 41, in main
entrypoint(arguments, params)
File "E:\DATA\PROGspleeterspleeter\commands\separate.py", line 160, in entrypoint
audio_adapter = get_audio_adapter(arguments.audio_adapter)
File "E:\DATA\PROGspleeterspleeter\utilsaudioadapter.py", line 136, in get_audio_adapter
return get_default_audio_adapter()
File "E:\DATA\PROGspleeterspleeter\utilsaudioadapter.py", line 124, in get_default_audio_adapter
from .ffmpeg import FFMPEGProcessAudioAdapter
File "E:\DATA\PROGspleeterspleeter\utilsaudioffmpeg.py", line 14, in
import ffmpeg
I made sure ffmpeg is actually installed !
Open Anaconda command prompt "as administrator" (It's important)
then
conda install -c conda-forge spleeter
then
python -m spleeter .......................
this way worked for me like a charm and thanks the team for the fantastic job!