Closed nacefguessaymi closed 3 months ago
@nacefguessaymi Can you please clarify if you tried the same thing with only single quotes? From the error messages it looks like you entered:
"python -m pip install 'kilosort[gui]'"
when it should be
python -m pip install 'kilosort[gui]'
(or with double quotes only like the one that worked for you)
But I can't tell for sure if those double quotes were just added by the error message.
@jacobpennington thanks for replying to this!
To answer your comment I was trying random commands until I got it to work.
I think there was some sort of formatting mistake in the tutorial so it looked like this:
The correct command should be python -m pip install "kilosort[gui]"
or python -m pip install 'kilosort[gui]'
.
zsh reads square brackets as a some sort string input parser and using the single or double quotations makes it read it as a string.
Ah, I see: thanks!
Correction for using the zsh command Should simply be
python -m pip install "kilosort[gui]"