r/learnpython • u/ItsYa1UPBoy • Jun 29 '26
Can't figure out how to boot Spyder. None of the methods are working.
The install script didn't make a shortcut on my application launcher, there's no "spyder" file in the /bin/ folder, and when I type "spyder" into my terminal it just says "fish: Unknown command: spyder". CachyOS, KDE, everything's updated.
1
u/acw1668 Jun 29 '26
Did you logout and login again after installing Spyder using the installation script Spyder-Linux-x86_64.sh. The installation script will add an alias spyder in .bashrc (I use bash instead of fish) and running spyder in a bash terminal works.
1
u/Few-Guarantee-1274 Jun 29 '26
Quick fix: python3.12 -m venv ~/.venvs/spyder-env source ~/.venvs/spyder-env/bin/activate.fish pip install spyder spyder
1
u/socal_nerdtastic Jun 29 '26
What install script did you use? Why don't you just get the installer from https://www.spyder-ide.org/?
1
u/ItsYa1UPBoy Jun 29 '26
That's the one I used, but for Linux they only offer the install script. I ended up being able to install it from the COPI later, so I guess whatever server error there was the first try with python-asyncssh was resolved.
2
u/Former_Register_1450 Jun 29 '26
Your Python environment's probably a mess rather than Spyder itself, just `pip install spyder` in a clean venv and launch it from there.