Bugzilla – Bug 1221882
Spyder IDE wont launch
Last modified: 2024-04-20 22:39:47 UTC
User cannot launch Spyder IDE, but can be launched as root. Permissions on multiple directories under /usr/lib/python3.11/site-packages/ are 700 and should be 755. Can find these easily: find /usr/lib/python3.11/site-packages/ -type d ! -perm 755 -printf '%h\t %p\t %M\n' and if fixed (e.g. run as root): find /usr/lib/python3.find /usr/lib/python3.11/site-packages/ -type d ! -perm 755 -exec chmod 755 {} \; Spyder will launch properly as a user. This has been a problem with other Python software in the past (e.g.. PGAdmin4).
Do you know which directories doesn't have the correct permissions? I've tested with the latest tumbleweed container, just installing the spyder package and every directory have the right permission.
You have reported a similar thing about a year ago and never came back with further information: boo#1210375 Cannot reproduce. > Information for package spyder: > ------------------------------- > Repository : Haupt-Repository (OSS) > Name : spyder > Version : 5.5.4-1.1 > Arch : noarch > Vendor : openSUSE > Installed Size : 40.8 MiB > Installed : Yes > Status : up-to-date > Source package : spyder-5.5.4-1.1.src > Upstream URL : https://www.spyder-ide.org/ > Summary : The Scientific Python Development Environment > $ find /usr/lib/python3.11/site-packages/ -type d ! -perm 755 | wc -l > 0 > $ find /usr/lib/python3.11/site-packages/ -type d | wc -l > 7052 I presume this is a problem of your setup and the result of an out-of-band install into system namespace.