PDA

View Full Version : [ubuntu] Cinnamon System settings will not start



Redalien0304
April 19th, 2019, 07:40 PM
Have Ubuntu 18.04 With Cinnamon PPA Embryoson Added.
Everything was fine till Cinnamon 4 was updated, had earlier 3.8 cinnamon i believe.
tried cinnamon-settings & cinnamon-settings-info both giving me errors.



cinnamon-settings


Traceback (most recent call last):
File "/usr/share/cinnamon/cinnamon-settings/cinnamon-settings.py", line 619, in <module>
window = MainWindow()
File "/usr/share/cinnamon/cinnamon-settings/cinnamon-settings.py", line 247, in __init__
for module in modules:
File "/usr/share/cinnamon/cinnamon-settings/modules/cs_desktop.py", line 6, in <module>
gi.require_version('Nemo', '3.0')
File "/usr/lib/python3/dist-packages/gi/__init__.py", line 130, in require_version
raise ValueError('Namespace %s not available' % namespace)
ValueError: Namespace Nemo not available
Any is Help is Appreciated Thanks

Redalien0304
April 20th, 2019, 04:22 AM
BUMP Anyone??

Redalien0304
April 21st, 2019, 03:57 PM
Bump Anyone?? No one having Problems Cinnamon Settings??

Redalien0304
April 23rd, 2019, 01:47 AM
So no one is having Problems Opening Cinnamon Settings??

1fallen
April 23rd, 2019, 01:59 AM
Try commenting the part of the code that checks the Nemo version with "#" infront of line six of file "cs_desktop.py"
path found here: /usr/share/cinnamon/cinnamon-settings/modules/cs_desktop.py

To now look like:

#gi.require_version ( 'Nemo', '3.0')

1fallen
April 24th, 2019, 06:47 PM
I had wondered if you have tried this yet>>>Works here:

cinnamon-settings
libgoa-backend-1.0.so.1: cannot open shared object file: No such file or directory
Failed to load module: /usr/lib/cinnamon-control-center-1/panels/libonline-accounts.so
True
Using pam module (python3-pampy)
I used:

sudoedit /usr/share/cinnamon/cinnamon-settings/modules/cs_desktop.py

Commented the line as I suggested:

#!/usr/bin/python3

from gi.repository import Gio

import gi
#gi.require_version('Nemo', '3.0')

from GSettingsWidgets import *

DESKTOP_SCHEMA = "org.nemo.desktop"
LAYOUT_KEY = "desktop-layout"
ORPHANS_KEY = "show-orphaned-desktop-icons"

DESKTOPS_ON_PRIMARY = "true::false"
DESKTOPS_ON_ALL = "true::true"
DESKTOPS_ON_NON_PRIMARY = "false::true"
DESKTOPS_ON_NONE = "false::false"


class Module:

And my settings now show.

Redalien0304
April 28th, 2019, 04:53 PM
Ok Thanks 1fallen

"#gi.require_version ( 'Nemo', '3.0')"
has solved my problem.