GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications

22,078

Solution 1

This fixed the issue for me:

export GIO_EXTRA_MODULES=/usr/lib/x86_64-linux-gnu/gio/modules/

See: https://github.com/conda-forge/glib-feedstock/issues/19 for more info.

Solution 2

sudo apt install dconf-gsettings-backend:i386

Fixed it for me. (Note: in my case I was running x86 app on x64 system.)

Share:
22,078

Related videos on Youtube

Bhushan Uniyal
Author by

Bhushan Uniyal

Choose and Achieve

Updated on November 07, 2020

Comments

  • Bhushan Uniyal
    Bhushan Uniyal over 3 years

    I am working on python project with opencv on Ubuntu OS

    import numpy as np
    import cv2
    
    img = cv2.imread("LillyBellea.png", 1)
    img = cv2.imwrite("LillyBellea.jpeg", img)
    cv2.imshow("original", img)
    cv2.waitKey(0)
    cv2.destroyAllWindows()
    

    when i am running this program then i am getting error

    GLib-GIO-Message: Using the 'memory' GSettings backend.  Your settings will not be saved or shared with other applications.
    

    can any one please help here, I have follow this answer but its not working for me

  • tjiagoM
    tjiagoM over 6 years
    I would like to add that to actually solve this problem, you need to add this to your local bashrc, otherwise, every time you open a terminal, the export is gone.