hschauhan / gosync

An Opensource Google Drive client written in Python
https://hschauhan.github.io/gosync/
GNU General Public License v2.0
283 stars 57 forks source link

"No module named wx" #12

Closed Fabian42 closed 5 years ago

Fabian42 commented 5 years ago

After installing with pip install GoSync (which required installing python-pip, that should probably be in the readme), the executable file ~/.local/bin/GoSync was created (which should also be in readme), but when executing it, I get:

Traceback (most recent call last):
  File "./GoSync", line 7, in <module>
    from GoSync.GoSync import main
  File "/home/fabian/.local/lib/python2.7/site-packages/GoSync/GoSync.py", line 20, in <module>
    import sys, os, wx, GoSyncController, GoSyncModel
ImportError: No module named wx

I assume some other dependency is missing? The readme said that all dependencies should be installed automatically, so I didn't install anything else.

mrdev023 commented 5 years ago

Install python-wxpython package

Fabian42 commented 5 years ago

I get "E: Unable to locate package python-wxpython" for that. Also, I'm now using InSync, so for me personally the problem isn't important anymore, but I would continue to test stuff if you want.

hschauhan commented 5 years ago

GoSync is going to move away from WX in next release.

Fabian42 commented 5 years ago

If you want me to test it then, please leave a comment here.

ungooglable commented 5 years ago

Had the same issue

Fix:

sudo apt install python-wxgtk3.0

Fabian42 commented 5 years ago

That does indeed fix it. Should be added to readme as well. But now I have a new issue, I'll post it in a new report.

ungooglable commented 5 years ago

That does indeed fix it. Should be added to readme as well.

I am neither a developer nor a contributor. But I think it shouldn't go into readme. It should be fixed instead (but the developer said, GoSync is going to move away from WX in next release)

SGmuwa commented 4 years ago

Description of the problem

I had such a problem too. I installed GoSync:

pip install --user gosync

But I have problem with wx:

$ GoSync 
Traceback (most recent call last):
  File "/home/sgmuwa/.local/bin/GoSync", line 5, in <module>
    from GoSync.GoSync import main
  File "/home/sgmuwa/.local/lib/python3.8/site-packages/GoSync/GoSync.py", line 20, in <module>
    import sys, os, wx, GoSyncController, GoSyncModel
ModuleNotFoundError: No module named 'wx'

Search for a solution

wxgtk3.0

@ungooglable

sudo apt install python-wxgtk3.0

I already have python-wxgtk3.0.

$ LC_ALL=0 apt list --installed python-wxgtk3.0 -a
Listing... Done
python-wxgtk3.0/focal,now 3.0.2.0+dfsg-8build1 amd64 [installed,automatic]
python-wxgtk3.0/oldstable 3.0.2.0+dfsg-4 amd64

pip install wx

I found this:

pip install --user wx
ERROR: Could not find a version that satisfies the requirement wx (from versions: none)
ERROR: No matching distribution found for wx

wxtools


$ sudo apt-get install python-wxtools
Чтение списков пакетов… Готово
Построение дерева зависимостей       
Чтение информации о состоянии… Готово
Следующие НОВЫЕ пакеты будут установлены:
python-wxtools
Обновлено 0 пакетов, установлено 1 новых пакетов, для удаления отмечено 0 пакетов, и 0 пакетов не обновлено.
Необходимо скачать 8 044 B архивов.
После данной операции объём занятого дискового пространства возрастёт на 63,5 kB.
Пол:1 http://ru.archive.ubuntu.com/ubuntu focal/universe amd64 python-wxtools all 3.0.2.0+dfsg-8build1 [8 044 B]
Получено 8 044 B за 0с (36,1 kB/s)    
Выбор ранее не выбранного пакета python-wxtools.
(Чтение базы данных … на данный момент установлено 336311 файлов и каталогов.)
Подготовка к распаковке …/python-wxtools_3.0.2.0+dfsg-8build1_all.deb …
Распаковывается python-wxtools (3.0.2.0+dfsg-8build1) …
Настраивается пакет python-wxtools (3.0.2.0+dfsg-8build1) …
Обрабатываются триггеры для mime-support (3.64ubuntu1) …
Обрабатываются триггеры для desktop-file-utils (0.24-1ubuntu2) …

$ python3 Python 3.8.2 (default, Apr 27 2020, 15:53:34) [GCC 9.3.0] on linux Type "help", "copyright", "credits" or "license" for more information.

import wx Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'wx'


## wxPython (solution)
```bash
$ pip install --user wxPython
Collecting wxPython
Downloading wxPython-4.1.0.tar.gz (65.8 MB)
|████████████████████████████████| 65.8 MB 5.1 kB/s 
Requirement already satisfied: pillow in /usr/lib/python3/dist-packages (from wxPython) (7.0.0)
Requirement already satisfied: six in /usr/lib/python3/dist-packages (from wxPython) (1.14.0)
Requirement already satisfied: numpy in /usr/lib/python3/dist-packages (from wxPython) (1.17.4)
Building wheels for collected packages: wxPython
Building wheel for wxPython (setup.py) ... error
ERROR: Command errored out with exit status 1:
command: /usr/bin/python3 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-_sktmrmw/wxPython/setup.py'"'"'; __file__='"'"'/tmp/pip-install-_sktmrmw/wxPython/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d /tmp/pip-wheel-smk0zus1                                                   
cwd: /tmp/pip-install-_sktmrmw/wxPython/                                                                  
Complete output (142 lines):                                                                                   
running bdist_wheel                                                                                            
running build                                                                                                  
WARNING: Building this way assumes that all generated files have been                                          
generated already.  If that is not the case then use build.py directly                                         
to generate the source and perform the build stage.  You can use                                               
--skip-build with the bdist_* or install commands to avoid this                                                
message and the wxWidgets and Phoenix build steps in the future.                                               

"/usr/bin/python3" -u build.py build
Will build using: "/usr/bin/python3"
3.8.2 (default, Apr 27 2020, 15:53:34)
[GCC 9.3.0]
Python's architecture is 64bit
cfg.VERSION: 4.1.0

Running command: build
Running command: build_wx
wxWidgets build options: ['--wxpython', '--unicode', '--gtk3']
Configure options: ['--enable-unicode', '--with-gtk=3', '--enable-sound', '--enable-graphics_ctx', '--enable-display', '--enable-geometry', '--enable-debug_flag', '--enable-optimise', '--disable-debugreport', '--enable-uiactionsim', '--enable-autoidman', '--with-sdl']
/tmp/pip-install-_sktmrmw/wxPython/ext/wxWidgets/configure --enable-unicode --with-gtk=3 --enable-sound --enable-graphics_ctx --enable-display --enable-geometry --enable-debug_flag --enable-optimise --disable-debugreport --enable-uiactionsim --enable-autoidman --with-sdl
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking for toolkit... gtk
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether we are using the Intel C compiler... no
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking whether gcc needs -traditional... no
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking whether we are using the Intel C++ compiler... no
checking whether we are using the Sun C++ compiler... no
checking for ar... ar
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for langinfo.h... yes
checking for wchar.h... yes
checking for sys/select.h... yes
checking for cxxabi.h... yes
checking for an ANSI C-conforming const... yes
checking for inline... inline
checking size of short... 2
checking size of void *... 8
checking size of int... 4
checking size of long... 8
checking size of size_t... 8
checking size of long long... 8
checking size of wchar_t... 4
checking for va_copy... yes
checking whether the compiler supports variadic macros... yes
checking for _FILE_OFFSET_BITS value needed for large files... 64
checking if large file support is available... yes
checking for _LARGEFILE_SOURCE value needed for large files... no
checking whether byte ordering is bigendian... no
checking for std::wstring in ... yes
checking for std::istream... yes
checking for std::ostream... yes
checking for type_traits... yes
checking for __sync_fetch_and_add and __sync_sub_and_fetch builtins... yes
checking for libraries directories... /usr/lib/x86_64-linux-gnu /usr/lib
checking for cos... no
checking for floor... no
checking if floating point functions link without -lm... no
checking for sin... yes
checking for ceil... yes
checking if floating point functions link with -lm... yes
checking for strtoull... yes
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
configure: WARNING: Defaulting to the builtin regex library for Unicode build.
checking for zlib.h >= 1.1.4... yes
checking for zlib.h... (cached) yes
checking for deflate in -lz... yes
checking for png.h > 0.90... no
checking for png.h... (cached) no
configure: WARNING: system png library not found or too old, will use built-in instead
checking for jpeglib.h... no
configure: WARNING: system jpeg library not found, will use built-in instead
checking lzma.h usability... no
checking lzma.h presence... no
checking for lzma.h... no
checking for jbg_dec_init in -ljbig... no
checking for LIBTIFF... not found via pkg-config
checking for tiffio.h... no
configure: WARNING: system tiff library not found, will use built-in instead
checking for expat.h... yes
checking if expat.h is valid C++ header... yes
checking for XML_ParserCreate in -lexpat... yes
checking for GTK+ version...
checking for pkg-config... (cached) /usr/bin/pkg-config
checking pkg-config is at least version 0.16... yes
checking for GTK+ - version >= 3.0.0... Package gtk+-3.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing gtk+-3.0.pc' to the PKG_CONFIG_PATH environment variable No package 'gtk+-3.0' found Package gthread-2.0 was not found in the pkg-config search path. Perhaps you should add the directory containinggthread-2.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gthread-2.0' found
no
Could not run GTK+ test program, checking why...
The test program failed to compile or link. See the file config.log for the
*** exact error that occurred. This usually means GTK+ is incorrectly installed.
configure: error:
The development files for GTK+ were not found. For GTK+ 2, please
ensure that pkg-config is in the path and that gtk+-2.0.pc is
installed. For GTK+ 1.2 please check that gtk-config is in the path,
and that the version is 1.2.3 or above. Also check that the
libraries returned by 'pkg-config gtk+-2.0 --libs' or 'gtk-config
--libs' are in the LD_LIBRARY_PATH or equivalent.

Error running configure
ERROR: failed building wxWidgets
Traceback (most recent call last):
File "build.py", line 1471, in cmd_build_wx
wxbuild.main(wxDir(), build_options)
File "/tmp/pip-install-_sktmrmw/wxPython/buildtools/build_wxwidgets.py", line 372, in main
exitIfError(wxBuilder.configure(dir=wxRootDir, options=configure_opts),
File "/tmp/pip-install-_sktmrmw/wxPython/buildtools/build_wxwidgets.py", line 85, in exitIfError
raise builder.BuildError(msg)
buildtools.builder.BuildError: Error running configure
Finished command: build_wx (0m9.904s)
Finished command: build (0m9.904s)
Command '"/usr/bin/python3" -u build.py build' failed with exit code 1.


ERROR: Failed building wheel for wxPython Running setup.py clean for wxPython Failed to build wxPython Installing collected packages: wxPython Running setup.py install for wxPython ... error ERROR: Command errored out with exit status 1: command: /usr/bin/python3 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-_sktmrmw/wxPython/setup.py'"'"'; file='"'"'/tmp/pip-install-_sktmrmw/wxPython/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(file);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' install --record /tmp/pip-record-irnr7h04/install-record.txt --single-version-externally-managed --user --prefix= --compile --install-headers /home/sgmuwa/.local/include/python3.8/wxPython
cwd: /tmp/pip-install-sktmrmw/wxPython/
Complete output (142 lines):
running install
running build
WARNING: Building this way assumes that all generated files have been
generated already. If that is not the case then use build.py directly
to generate the source and perform the build stage. You can use
--skip-build with the bdist
* or install commands to avoid this
message and the wxWidgets and Phoenix build steps in the future.

"/usr/bin/python3" -u build.py build                                                                         
Will build using: "/usr/bin/python3"                                                                         
3.8.2 (default, Apr 27 2020, 15:53:34)                                                                       
[GCC 9.3.0]                                                                                                  
Python's architecture is 64bit                                                                               
cfg.VERSION: 4.1.0                                                                                           

Running command: build                                                                                       
Running command: build_wx                                                                                    
wxWidgets build options: ['--wxpython', '--unicode', '--gtk3']                                               
Configure options: ['--enable-unicode', '--with-gtk=3', '--enable-sound', '--enable-graphics_ctx', '--enable-display', '--enable-geometry', '--enable-debug_flag', '--enable-optimise', '--disable-debugreport', '--enable-uiactionsim', '--enable-autoidman', '--with-sdl']                                                                   
/tmp/pip-install-_sktmrmw/wxPython/ext/wxWidgets/configure --enable-unicode --with-gtk=3 --enable-sound --enable-graphics_ctx --enable-display --enable-geometry --enable-debug_flag --enable-optimise --disable-debugreport --enable-uiactionsim --enable-autoidman --with-sdl                                                                
checking build system type... x86_64-pc-linux-gnu                                                            
checking host system type... x86_64-pc-linux-gnu                                                             
checking for toolkit... gtk                                                                                  
checking for gcc... gcc                                                                                      
checking whether the C compiler works... yes                                                                 
checking for C compiler default output file name... a.out                                                    
checking for suffix of executables...                                                                        
checking whether we are cross compiling... no                                                                
checking for suffix of object files... o                                                                     
checking whether we are using the GNU C compiler... yes                                                      
checking whether gcc accepts -g... yes                                                                       
checking for gcc option to accept ISO C89... none needed                                                     
checking whether we are using the Intel C compiler... no                                                     
checking how to run the C preprocessor... gcc -E                                                             
checking for grep that handles long lines and -e... /usr/bin/grep                                            
checking for egrep... /usr/bin/grep -E                                                                       
checking whether gcc needs -traditional... no                                                                
checking for g++... g++                                                                                      
checking whether we are using the GNU C++ compiler... yes                                                    
checking whether g++ accepts -g... yes                                                                       
checking whether we are using the Intel C++ compiler... no                                                   
checking whether we are using the Sun C++ compiler... no                                                     
checking for ar... ar                                                                                        
checking for ANSI C header files... yes                                                                      
checking for sys/types.h... yes                                                                              
checking for sys/stat.h... yes                                                                               
checking for stdlib.h... yes                                                                                 
checking for string.h... yes                                                                                 
checking for memory.h... yes                                                                                 
checking for strings.h... yes                                                                                
checking for inttypes.h... yes                                                                               
checking for stdint.h... yes                                                                                 
checking for unistd.h... yes                                                                                 
checking for langinfo.h... yes                                                                               
checking for wchar.h... yes                                                                                  
checking for sys/select.h... yes                                                                             
checking for cxxabi.h... yes                                                                                 
checking for an ANSI C-conforming const... yes                                                               
checking for inline... inline                                                                                
checking size of short... 2                                                                                  
checking size of void *... 8                                                                                 
checking size of int... 4                                                                                    
checking size of long... 8                                                                                   
checking size of size_t... 8                                                                                 
checking size of long long... 8                                                                              
checking size of wchar_t... 4                                                                                
checking for va_copy... yes                                                                                  
checking whether the compiler supports variadic macros... yes                                                
checking for _FILE_OFFSET_BITS value needed for large files... 64                                            
checking if large file support is available... yes                                                           
checking for _LARGEFILE_SOURCE value needed for large files... no                                            
checking whether byte ordering is bigendian... no                                                            
checking for std::wstring in <string>... yes                                                                 
checking for std::istream... yes                                                                             
checking for std::ostream... yes                                                                             
checking for type_traits... yes                                                                              
checking for __sync_fetch_and_add and __sync_sub_and_fetch builtins... yes                                   
checking for libraries directories... /usr/lib/x86_64-linux-gnu /usr/lib                                     
checking for cos... no                                                                                       
checking for floor... no                                                                                     
checking if floating point functions link without -lm... no                                                  
checking for sin... yes                                                                                      
checking for ceil... yes                                                                                     
checking if floating point functions link with -lm... yes                                                    
checking for strtoull... yes                                                                                 
checking for pkg-config... /usr/bin/pkg-config                                                               
checking pkg-config is at least version 0.9.0... yes                                                         
configure: WARNING: Defaulting to the builtin regex library for Unicode build.                               
checking for zlib.h >= 1.1.4... yes                                                                          
checking for zlib.h... (cached) yes                                                                          
checking for deflate in -lz... yes                                                                           
checking for png.h > 0.90... no                                                                              
checking for png.h... (cached) no                                                                            
configure: WARNING: system png library not found or too old, will use built-in instead                       
checking for jpeglib.h... no                                                                                 
configure: WARNING: system jpeg library not found, will use built-in instead                                 
checking lzma.h usability... no                                                                              
checking lzma.h presence... no                                                                               
checking for lzma.h... no                                                                                    
checking for jbg_dec_init in -ljbig... no                                                                    
checking for LIBTIFF... not found via pkg-config                                                             
checking for tiffio.h... no                                                                                  
configure: WARNING: system tiff library not found, will use built-in instead                                 
checking for expat.h... yes                                                                                  
checking if expat.h is valid C++ header... yes                                                               
checking for XML_ParserCreate in -lexpat... yes                                                              
checking for GTK+ version...                                                                                 
checking for pkg-config... (cached) /usr/bin/pkg-config                                                      
checking pkg-config is at least version 0.16... yes                                                          
checking for GTK+ - version >= 3.0.0... Package gtk+-3.0 was not found in the pkg-config search path.        
Perhaps you should add the directory containing `gtk+-3.0.pc'                                                
to the PKG_CONFIG_PATH environment variable                                                                  
No package 'gtk+-3.0' found                                                                                  
Package gthread-2.0 was not found in the pkg-config search path.                                             
Perhaps you should add the directory containing `gthread-2.0.pc'                                             
to the PKG_CONFIG_PATH environment variable                                                                  
No package 'gthread-2.0' found                                                                               
no                                                                                                           
*** Could not run GTK+ test program, checking why...                                                         
*** The test program failed to compile or link. See the file config.log for the                              
*** exact error that occurred. This usually means GTK+ is incorrectly installed.                             
configure: error:                                                                                            
The development files for GTK+ were not found. For GTK+ 2, please                                            
ensure that pkg-config is in the path and that gtk+-2.0.pc is                                                
installed. For GTK+ 1.2 please check that gtk-config is in the path,                                         
and that the version is 1.2.3 or above. Also check that the                                                  
libraries returned by 'pkg-config gtk+-2.0 --libs' or 'gtk-config                                            
--libs' are in the LD_LIBRARY_PATH or equivalent.                                                            

Error running configure                                                                                      
ERROR: failed building wxWidgets                                                                             
Traceback (most recent call last):                                                                           
  File "build.py", line 1471, in cmd_build_wx                                                                
    wxbuild.main(wxDir(), build_options)                                                                     
  File "/tmp/pip-install-_sktmrmw/wxPython/buildtools/build_wxwidgets.py", line 372, in main                 
    exitIfError(wxBuilder.configure(dir=wxRootDir, options=configure_opts),                                  
  File "/tmp/pip-install-_sktmrmw/wxPython/buildtools/build_wxwidgets.py", line 85, in exitIfError           
    raise builder.BuildError(msg)                                                                            
buildtools.builder.BuildError: Error running configure                                                       
Finished command: build_wx (0m9.70s)                                                                         
Finished command: build (0m9.70s)                                                                            
Command '"/usr/bin/python3" -u build.py build' failed with exit code 1.                                      
----------------------------------------                                                                     

ERROR: Command errored out with exit status 1: /usr/bin/python3 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-_sktmrmw/wxPython/setup.py'"'"'; file='"'"'/tmp/pip-install-_sktmrmw/wxPython/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(file);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' install --record /tmp/pip-record-irnr7h04/install-record.txt --single-version-externally-managed --user --prefix= --compile --install-headers /home/sgmuwa/.local/include/python3.8/wxPython Check the logs for full command output.

I tried installing libgtk2.0-dev, but the result did not change.
https://github.com/wxWidgets/Phoenix/issues/412#issuecomment-310858980 but for Ubuntu.
```bash
$ LC_ALL=0 sudo apt-get install -y libgtk2.0-dev libgtk-3-dev libjpeg-dev libtiff-dev libsdl1.2-dev libnotify-dev freeglut3 freeglut3-dev libsm-dev libwebkit2gtk-4.0-dev libwxgtk-webview3.0-gtk3-dev libgstreamer-plugins-base1.0-dev
Reading package lists... Done
Building dependency tree       
Reading state information... Done
libgstreamer-plugins-base1.0-dev is already the newest version (1.16.2-4).
libgstreamer-plugins-base1.0-dev set to manually installed.
libsm-dev is already the newest version (2:1.2.3-1).
libsm-dev set to manually installed.
libgtk2.0-dev is already the newest version (2.24.32-4ubuntu4).
libgtk2.0-dev set to manually installed.
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 libtiff-dev : Depends: libjbig-dev but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
$ LC_ALL=0 sudo apt install libjbig-dev
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 libjbig-dev : Depends: libjbig0 (= 2.1-3.1build1) but 2.1-3.1+b2 is to be installed
E: Unable to correct problems, you have held broken packages.
$ LC_ALL=0 apt list -a libjbig0
Listing... Done
libjbig0/now 2.1-3.1+b2 amd64 [installed,local]
libjbig0/focal 2.1-3.1build1 amd64

libjbig0/now 2.1-3.1+b2 i386 [installed,local]
libjbig0/focal 2.1-3.1build1 i386
$ LC_ALL=0 sudo apt install libjbig0/focal 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Selected version '2.1-3.1build1' (Ubuntu:20.04/focal [amd64]) for 'libjbig0'
The following packages were automatically installed and are no longer required:
  gir1.2-gst-plugins-base-1.0 gir1.2-gstreamer-1.0 gir1.2-gtk-2.0 gir1.2-harfbuzz-0.0 glib-networking:i386
  gstreamer1.0-plugins-base:i386 gstreamer1.0-x:i386 i965-va-driver:i386 icu-devtools
  intel-media-va-driver:i386 libaa1:i386 libaom0:i386 libaribb24-0:i386 libasn1-8-heimdal:i386 libasound2:i386
  libasound2-plugins:i386 libasyncns0:i386 libatk1.0-dev libavahi-client3:i386 libavahi-common-data:i386
  libavahi-common3:i386 libavc1394-0:i386 libavutil56:i386 libblkid-dev libbrotli1:i386 libcaca0:i386
  libcairo-gobject2:i386 libcairo-script-interpreter2 libcairo2:i386 libcairo2-dev libcap2:i386
  libcapi20-3:i386 libcdparanoia0:i386 libcodec2-0.9:i386 libcups2:i386 libcurl3-gnutls:i386 libdatrie-dev
  libdatrie1:i386 libdbus-1-3:i386 libdv4:i386 libegl-dev libegl1-mesa-dev libexif12:i386 libflac8:i386
  libfontconfig1:i386 libfontconfig1-dev libfreetype-dev libfreetype6:i386 libfreetype6-dev libfribidi-dev
  libfribidi0:i386 libgdbm-compat4:i386 libgdbm6:i386 libgdk-pixbuf2.0-dev libgl-dev libgl1-mesa-dev
  libgles-dev libgles1 libgles2-mesa-dev libglib2.0-0:i386 libglib2.0-dev libglib2.0-dev-bin libglu1-mesa:i386
  libglvnd-dev libglx-dev libgmp10:i386 libgnutls30:i386 libgomp1:i386 libgphoto2-port12:i386
  libgraphite2-3:i386 libgraphite2-dev libgsm1:i386 libgssapi-krb5-2:i386 libgssapi3-heimdal:i386
  libgstreamer-plugins-base1.0-0:i386 libgstreamer-plugins-base1.0-dev libgstreamer-plugins-good1.0-0:i386
  libgstreamer1.0-0:i386 libgstreamer1.0-dev libgtk2.0-dev libgudev-1.0-0:i386 libharfbuzz-dev
  libharfbuzz-gobject0 libharfbuzz0b:i386 libhcrypto4-heimdal:i386 libheimbase1-heimdal:i386
  libheimntlm0-heimdal:i386 libhogweed5:i386 libhx509-5-heimdal:i386 libicu-dev libicu66:i386
  libiec61883-0:i386 libieee1284-3:i386 libigdgmm11:i386 libjack-jackd2-0:i386 libjpeg-turbo8:i386
  libjpeg8:i386 libk5crypto3:i386 libkeyutils1:i386 libkrb5-26-heimdal:i386 libkrb5-3:i386 libkrb5support0:i386
  liblcms2-2:i386 libldap-2.4-2:i386 libltdl7:i386 libmount-dev libmp3lame0:i386 libmpg123-0:i386
  libmysqlclient21:i386 libnettle7:i386 libnghttp2-14:i386 libnuma1:i386 libogg0:i386 libopenal1:i386
  libopencore-amrnb0:i386 libopencore-amrwb0:i386 libopengl-dev libopengl0 libopenjp2-7:i386 libopus0:i386
  liborc-0.4-0:i386 liborc-0.4-dev liborc-0.4-dev-bin libosmesa6:i386 libp11-kit0:i386 libpango-1.0-0:i386
  libpango1.0-dev libpangocairo-1.0-0:i386 libpangoft2-1.0-0:i386 libpcap0.8:i386 libpci3:i386 libpcre16-3
  libpcre2-32-0 libpcre2-dev libpcre2-posix2 libpcre3-dev libpcre32-3 libpcrecpp0v5 libperl5.30:i386
  libpixman-1-0:i386 libpixman-1-dev libpng-dev libpng-tools libpng16-16:i386 libproxy1v5:i386 libpsl5:i386
  libpulse0:i386 libraw1394-11:i386 libroken18-heimdal:i386 librtmp1:i386 libsamplerate0:i386 libsasl2-2:i386
  libsasl2-modules:i386 libsasl2-modules-db:i386 libsdl2-2.0-0:i386 libselinux1-dev libsepol1-dev
  libshine3:i386 libshout3:i386 libslang2:i386 libsnappy1v5:i386 libsndfile1:i386 libsndio7.0:i386
  libsnmp35:i386 libsoup2.4-1:i386 libsoxr0:i386 libspeex1:i386 libsqlite3-0:i386 libssh-4:i386 libssl1.1:i386
  libstb0:i386 libswresample3:i386 libtag1v5:i386 libtag1v5-vanilla:i386 libtasn1-6:i386 libthai-dev
  libthai0:i386 libtheora0:i386 libtwolame0:i386 libusb-1.0-0:i386 libv4l-0:i386 libv4lconvert0:i386
  libva-drm2:i386 libva-x11-2:i386 libva2:i386 libvdpau1:i386 libvisual-0.4-0:i386 libvkd3d1:i386
  libvo-amrwbenc0:i386 libvorbis0a:i386 libvorbisenc2:i386 libvpx6:i386 libwavpack1:i386
  libwayland-cursor0:i386 libwayland-egl1:i386 libwebp6:i386 libwebpmux3:i386 libwind0-heimdal:i386
  libwrap0:i386 libx11-xcb-dev libx264-155:i386 libx265-179:i386 libxcb-render0:i386 libxcb-render0-dev
  libxcb-shm0:i386 libxcb-shm0-dev libxcb-xfixes0:i386 libxcomposite-dev libxcomposite1:i386 libxcursor-dev
  libxcursor1:i386 libxdamage-dev libxext-dev libxfixes-dev libxft-dev libxi-dev libxi6:i386 libxinerama-dev
  libxkbcommon0:i386 libxml2:i386 libxpm4:i386 libxrandr-dev libxrandr2:i386 libxrender-dev libxrender1:i386
  libxslt1.1:i386 libxv1:i386 libxvidcore4:i386 libzvbi0:i386 mesa-va-drivers:i386 mesa-vdpau-drivers:i386
  ocl-icd-libopencl1:i386 pango1.0-tools python-wxgtk3.0-dev python-wxtools uuid-dev va-driver-all:i386
  vdpau-driver-all:i386 x11proto-input-dev x11proto-randr-dev x11proto-xext-dev x11proto-xinerama-dev
Use 'sudo apt autoremove' to remove them.
The following packages will be REMOVED:
  gstreamer1.0-plugins-good:i386 libavcodec-extra58:i386 libfaudio0:i386 libgd3:i386 libgdk-pixbuf2.0-0:i386
  libgphoto2-6:i386 libjbig0:i386 librsvg2-2:i386 librsvg2-common:i386 libsane:i386 libtiff5:i386 libwine:i386
  wine32:i386
The following packages will be DOWNGRADED:
  libjbig0
0 upgraded, 0 newly installed, 1 downgraded, 13 to remove and 0 not upgraded.
Need to get 26.7 kB of archives.
After this operation, 278 MB disk space will be freed.
Do you want to continue? [Y/n] y
Get:1 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 libjbig0 amd64 2.1-3.1build1 [26.7 kB]
Fetched 26.7 kB in 0s (99.7 kB/s)
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = "ru:en_US",
        LC_ALL = "0",
        LC_TIME = "ru_RU.UTF-8",
        LC_MONETARY = "ru_RU.UTF-8",
        LC_ADDRESS = "ru_RU.UTF-8",
        LC_TELEPHONE = "ru_RU.UTF-8",
        LC_NAME = "ru_RU.UTF-8",
        LC_MEASUREMENT = "ru_RU.UTF-8",
        LC_IDENTIFICATION = "ru_RU.UTF-8",
        LC_NUMERIC = "ru_RU.UTF-8",
        LC_PAPER = "ru_RU.UTF-8",
        LANG = "ru_RU.UTF-8"
    are supported and installed on your system.
perl: warning: Falling back to a fallback locale ("ru_RU.UTF-8").
locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory
(Reading database ... 339761 files and directories currently installed.)
Removing gstreamer1.0-plugins-good:i386 (1.16.2-1ubuntu2) ...
Removing wine32:i386 (5.0-3ubuntu1) ...
Removing libwine:i386 (5.0-3ubuntu1) ...
Removing libfaudio0:i386 (20.04-2) ...
Removing libavcodec-extra58:i386 (7:4.2.2-1ubuntu1) ...
Removing libsane:i386 (1.0.29-0ubuntu5) ...
Removing libgphoto2-6:i386 (2.5.24-1) ...
Removing libgd3:i386 (2.2.5-5.2ubuntu2) ...
Removing librsvg2-common:i386 (2.48.2-1) ...
Removing librsvg2-2:i386 (2.48.2-1) ...
Removing libgdk-pixbuf2.0-0:i386 (2.40.0+dfsg-3) ...
Removing libtiff5:i386 (4.1.0+git191117-2build1) ...
Removing libjbig0:i386 (2.1-3.1+b2) ...
dpkg: warning: downgrading libjbig0:amd64 from 2.1-3.1+b2 to 2.1-3.1build1
(Reading database ... 337553 files and directories currently installed.)
Preparing to unpack .../libjbig0_2.1-3.1build1_amd64.deb ...
Unpacking libjbig0:amd64 (2.1-3.1build1) over (2.1-3.1+b2) ...
Setting up libjbig0:amd64 (2.1-3.1build1) ...
Processing triggers for libc-bin (2.31-0ubuntu9) ...
$ LC_ALL=0 sudo apt-get install -y libgtk2.0-dev libgtk-3-dev libjpeg-dev libtiff-dev libsdl1.2-dev libnotify-dev freeglut3 freeglut3-dev libsm-dev libwebkit2gtk-4.0-dev libwxgtk-webview3.0-gtk3-dev libgstreamer-plugins-base1.0-dev
Reading package lists... Done
Building dependency tree       
Reading state information... Done
libgstreamer-plugins-base1.0-dev is already the newest version (1.16.2-4).
libgstreamer-plugins-base1.0-dev set to manually installed.
libsm-dev is already the newest version (2:1.2.3-1).
libsm-dev set to manually installed.
libgtk2.0-dev is already the newest version (2.24.32-4ubuntu4).
libgtk2.0-dev set to manually installed.
The following packages were automatically installed and are no longer required:
  glib-networking:i386 gstreamer1.0-plugins-base:i386 gstreamer1.0-x:i386 i965-va-driver:i386
  intel-media-va-driver:i386 libaa1:i386 libaom0:i386 libaribb24-0:i386 libasn1-8-heimdal:i386 libasound2:i386
  libasound2-plugins:i386 libasyncns0:i386 libavahi-client3:i386 libavahi-common-data:i386
  libavahi-common3:i386 libavc1394-0:i386 libavutil56:i386 libbrotli1:i386 libcaca0:i386 libcairo-gobject2:i386
  libcairo2:i386 libcap2:i386 libcapi20-3:i386 libcdparanoia0:i386 libcodec2-0.9:i386 libcups2:i386
  libcurl3-gnutls:i386 libdatrie1:i386 libdbus-1-3:i386 libdv4:i386 libexif12:i386 libflac8:i386
  libfontconfig1:i386 libfreetype6:i386 libfribidi0:i386 libgdbm-compat4:i386 libgdbm6:i386 libglib2.0-0:i386
  libglu1-mesa:i386 libgmp10:i386 libgnutls30:i386 libgomp1:i386 libgphoto2-port12:i386 libgraphite2-3:i386
  libgsm1:i386 libgssapi-krb5-2:i386 libgssapi3-heimdal:i386 libgstreamer-plugins-base1.0-0:i386
  libgstreamer-plugins-good1.0-0:i386 libgstreamer1.0-0:i386 libgudev-1.0-0:i386 libharfbuzz0b:i386
  libhcrypto4-heimdal:i386 libheimbase1-heimdal:i386 libheimntlm0-heimdal:i386 libhogweed5:i386
  libhx509-5-heimdal:i386 libicu66:i386 libiec61883-0:i386 libieee1284-3:i386 libigdgmm11:i386
  libjack-jackd2-0:i386 libjpeg-turbo8:i386 libjpeg8:i386 libk5crypto3:i386 libkeyutils1:i386
  libkrb5-26-heimdal:i386 libkrb5-3:i386 libkrb5support0:i386 liblcms2-2:i386 libldap-2.4-2:i386 libltdl7:i386
  libmp3lame0:i386 libmpg123-0:i386 libmysqlclient21:i386 libnettle7:i386 libnghttp2-14:i386 libnuma1:i386
  libogg0:i386 libopenal1:i386 libopencore-amrnb0:i386 libopencore-amrwb0:i386 libopenjp2-7:i386 libopus0:i386
  liborc-0.4-0:i386 libosmesa6:i386 libp11-kit0:i386 libpango-1.0-0:i386 libpangocairo-1.0-0:i386
  libpangoft2-1.0-0:i386 libpcap0.8:i386 libpci3:i386 libperl5.30:i386 libpixman-1-0:i386 libpng16-16:i386
  libproxy1v5:i386 libpsl5:i386 libpulse0:i386 libraw1394-11:i386 libroken18-heimdal:i386 librtmp1:i386
  libsamplerate0:i386 libsasl2-2:i386 libsasl2-modules:i386 libsasl2-modules-db:i386 libsdl2-2.0-0:i386
  libshine3:i386 libshout3:i386 libslang2:i386 libsnappy1v5:i386 libsndfile1:i386 libsndio7.0:i386
  libsnmp35:i386 libsoup2.4-1:i386 libsoxr0:i386 libspeex1:i386 libsqlite3-0:i386 libssh-4:i386 libssl1.1:i386
  libstb0:i386 libswresample3:i386 libtag1v5:i386 libtag1v5-vanilla:i386 libtasn1-6:i386 libthai0:i386
  libtheora0:i386 libtwolame0:i386 libusb-1.0-0:i386 libv4l-0:i386 libv4lconvert0:i386 libva-drm2:i386
  libva-x11-2:i386 libva2:i386 libvdpau1:i386 libvisual-0.4-0:i386 libvkd3d1:i386 libvo-amrwbenc0:i386
  libvorbis0a:i386 libvorbisenc2:i386 libvpx6:i386 libwavpack1:i386 libwayland-cursor0:i386
  libwayland-egl1:i386 libwebp6:i386 libwebpmux3:i386 libwind0-heimdal:i386 libwrap0:i386 libx264-155:i386
  libx265-179:i386 libxcb-render0:i386 libxcb-shm0:i386 libxcb-xfixes0:i386 libxcomposite1:i386
  libxcursor1:i386 libxi6:i386 libxkbcommon0:i386 libxml2:i386 libxpm4:i386 libxrandr2:i386 libxrender1:i386
  libxslt1.1:i386 libxv1:i386 libxvidcore4:i386 libzvbi0:i386 mesa-va-drivers:i386 mesa-vdpau-drivers:i386
  ocl-icd-libopencl1:i386 python-wxgtk3.0-dev python-wxtools va-driver-all:i386 vdpau-driver-all:i386
Use 'sudo apt autoremove' to remove them.
The following additional packages will be installed:
  gir1.2-atspi-2.0 gir1.2-javascriptcoregtk-4.0 gir1.2-soup-2.4 gir1.2-webkit2-4.0 libasound2-dev
  libatk-bridge2.0-dev libatspi2.0-dev libbrotli-dev libcaca-dev libdbus-1-dev libepoxy-dev libglu1-mesa-dev
  libjavascriptcoregtk-4.0-dev libjbig-dev libjpeg-turbo8-dev libjpeg8-dev liblzma-dev libpsl-dev libpulse-dev
  libslang2-dev libsoup2.4-dev libsqlite3-dev libtiffxx5 libwayland-bin libwayland-dev libwxbase3.0-dev
  libwxgtk-webview3.0-gtk3-0v5 libwxgtk3.0-gtk3-dev libxkbcommon-dev libxml2-dev libxtst-dev wayland-protocols
  wx-common wx3.0-headers x11proto-record-dev
Suggested packages:
  libasound2-doc libgtk-3-doc liblzma-doc libsoup2.4-doc sqlite3-doc libwayland-doc wx3.0-doc
The following NEW packages will be installed:
  freeglut3 freeglut3-dev gir1.2-atspi-2.0 gir1.2-javascriptcoregtk-4.0 gir1.2-soup-2.4 gir1.2-webkit2-4.0
  libasound2-dev libatk-bridge2.0-dev libatspi2.0-dev libbrotli-dev libcaca-dev libdbus-1-dev libepoxy-dev
  libglu1-mesa-dev libgtk-3-dev libjavascriptcoregtk-4.0-dev libjbig-dev libjpeg-dev libjpeg-turbo8-dev
  libjpeg8-dev liblzma-dev libnotify-dev libpsl-dev libpulse-dev libsdl1.2-dev libslang2-dev libsoup2.4-dev
  libsqlite3-dev libtiff-dev libtiffxx5 libwayland-bin libwayland-dev libwebkit2gtk-4.0-dev libwxbase3.0-dev
  libwxgtk-webview3.0-gtk3-0v5 libwxgtk-webview3.0-gtk3-dev libwxgtk3.0-gtk3-dev libxkbcommon-dev libxml2-dev
  libxtst-dev wayland-protocols wx-common wx3.0-headers x11proto-record-dev
0 upgraded, 44 newly installed, 0 to remove and 0 not upgraded.
Need to get 8393 kB of archives.
After this operation, 57.2 MB of additional disk space will be used.
Get:1 http://ru.archive.ubuntu.com/ubuntu focal/universe amd64 freeglut3 amd64 2.8.1-3 [73.6 kB]
Get:2 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 libglu1-mesa-dev amd64 9.0.1-1build1 [207 kB]
Get:3 http://ru.archive.ubuntu.com/ubuntu focal/universe amd64 freeglut3-dev amd64 2.8.1-3 [124 kB]
Get:4 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-atspi-2.0 amd64 2.36.0-2 [15.1 kB]
Get:5 http://ru.archive.ubuntu.com/ubuntu focal-updates/main amd64 gir1.2-javascriptcoregtk-4.0 amd64 2.28.2-0ubuntu0.20.04.1 [31.9 kB]
Get:6 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 gir1.2-soup-2.4 amd64 2.70.0-1 [27.5 kB]
Get:7 http://ru.archive.ubuntu.com/ubuntu focal-updates/main amd64 gir1.2-webkit2-4.0 amd64 2.28.2-0ubuntu0.20.04.1 [81.2 kB]
Get:8 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 libasound2-dev amd64 1.2.2-2.1 [104 kB]
Get:9 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 libdbus-1-dev amd64 1.12.16-2ubuntu2 [167 kB]
Get:10 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 x11proto-record-dev all 2019.2-1ubuntu1 [2624 B]
Get:11 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 libxtst-dev amd64 2:1.2.3-1 [15.2 kB]
Get:12 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 libatspi2.0-dev amd64 2.36.0-2 [66.7 kB]
Get:13 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 libatk-bridge2.0-dev amd64 2.34.1-3 [3096 B]
Get:14 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 libbrotli-dev amd64 1.0.7-6build1 [279 kB]
Get:15 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 libslang2-dev amd64 2.3.2-4 [396 kB]
Get:16 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 libcaca-dev amd64 0.99.beta19-2.1ubuntu1 [758 kB]
Get:17 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 libepoxy-dev amd64 1.5.4-1 [126 kB]                 
Get:18 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 libwayland-bin amd64 1.18.0-1 [20.3 kB]             
Get:19 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 libwayland-dev amd64 1.18.0-1 [64.6 kB]             
Get:20 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 libxkbcommon-dev amd64 0.10.0-1 [45.4 kB]           
Get:21 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 wayland-protocols all 1.20-1 [60.3 kB]              
Get:22 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 libgtk-3-dev amd64 3.24.18-1ubuntu1 [1067 kB]       
Get:23 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 libjpeg-turbo8-dev amd64 2.0.3-0ubuntu1 [238 kB]    
Get:24 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 libjpeg8-dev amd64 8c-2ubuntu8 [1552 B]             
Get:25 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 libjpeg-dev amd64 8c-2ubuntu8 [1546 B]              
Get:26 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 libnotify-dev amd64 0.7.9-1ubuntu2 [8696 B]         
Get:27 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 libpsl-dev amd64 0.21.0-1ubuntu1 [71.0 kB]          
Get:28 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 libpulse-dev amd64 1:13.99.1-1ubuntu3 [72.5 kB]     
Get:29 http://ru.archive.ubuntu.com/ubuntu focal/universe amd64 libsdl1.2-dev amd64 1.2.15+dfsg2-5 [707 kB]     
Get:30 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 libsqlite3-dev amd64 3.31.1-4 [696 kB]              
Get:31 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 libxml2-dev amd64 2.9.10+dfsg-5 [737 kB]            
Get:32 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 libsoup2.4-dev amd64 2.70.0-1 [147 kB]              
Get:33 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 libjbig-dev amd64 2.1-3.1build1 [25.2 kB]           
Get:34 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 liblzma-dev amd64 5.2.4-1 [145 kB]                  
Get:35 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 libtiffxx5 amd64 4.1.0+git191117-2build1 [5944 B]   
Get:36 http://ru.archive.ubuntu.com/ubuntu focal/main amd64 libtiff-dev amd64 4.1.0+git191117-2build1 [284 kB]  
Get:37 http://ru.archive.ubuntu.com/ubuntu focal/universe amd64 wx3.0-headers all 3.0.4+dfsg-15build1 [1019 kB] 
Get:38 http://ru.archive.ubuntu.com/ubuntu focal/universe amd64 libwxbase3.0-dev amd64 3.0.4+dfsg-15build1 [29.5 kB]
Get:39 http://ru.archive.ubuntu.com/ubuntu focal/universe amd64 libwxgtk-webview3.0-gtk3-0v5 amd64 3.0.4+dfsg-15build1 [49.9 kB]
Get:40 http://ru.archive.ubuntu.com/ubuntu focal/universe amd64 wx-common amd64 3.0.4+dfsg-15build1 [71.1 kB]   
Get:41 http://ru.archive.ubuntu.com/ubuntu focal/universe amd64 libwxgtk3.0-gtk3-dev amd64 3.0.4+dfsg-15build1 [29.7 kB]
Get:42 http://ru.archive.ubuntu.com/ubuntu focal/universe amd64 libwxgtk-webview3.0-gtk3-dev amd64 3.0.4+dfsg-15build1 [8832 B]
Get:43 http://ru.archive.ubuntu.com/ubuntu focal-updates/main amd64 libjavascriptcoregtk-4.0-dev amd64 2.28.2-0ubuntu0.20.04.1 [58.5 kB]
Get:44 http://ru.archive.ubuntu.com/ubuntu focal-updates/main amd64 libwebkit2gtk-4.0-dev amd64 2.28.2-0ubuntu0.20.04.1 [248 kB]
Fetched 8393 kB in 18s (469 kB/s)                                                                               
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
        LANGUAGE = "ru:en_US",
        LC_ALL = "0",
        LC_TIME = "ru_RU.UTF-8",
        LC_MONETARY = "ru_RU.UTF-8",
        LC_ADDRESS = "ru_RU.UTF-8",
        LC_TELEPHONE = "ru_RU.UTF-8",
        LC_NAME = "ru_RU.UTF-8",
        LC_MEASUREMENT = "ru_RU.UTF-8",
        LC_IDENTIFICATION = "ru_RU.UTF-8",
        LC_NUMERIC = "ru_RU.UTF-8",
        LC_PAPER = "ru_RU.UTF-8",
        LANG = "ru_RU.UTF-8"
    are supported and installed on your system.
perl: warning: Falling back to a fallback locale ("ru_RU.UTF-8").
locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory
Извлекаются шаблоны из пакетов: 100%
Selecting previously unselected package freeglut3:amd64.
(Reading database ... 337551 files and directories currently installed.)
Preparing to unpack .../00-freeglut3_2.8.1-3_amd64.deb ...
Unpacking freeglut3:amd64 (2.8.1-3) ...
Selecting previously unselected package libglu1-mesa-dev:amd64.
Preparing to unpack .../01-libglu1-mesa-dev_9.0.1-1build1_amd64.deb ...
Unpacking libglu1-mesa-dev:amd64 (9.0.1-1build1) ...
Selecting previously unselected package freeglut3-dev:amd64.
Preparing to unpack .../02-freeglut3-dev_2.8.1-3_amd64.deb ...
Unpacking freeglut3-dev:amd64 (2.8.1-3) ...
Selecting previously unselected package gir1.2-atspi-2.0:amd64.
Preparing to unpack .../03-gir1.2-atspi-2.0_2.36.0-2_amd64.deb ...
Unpacking gir1.2-atspi-2.0:amd64 (2.36.0-2) ...
Selecting previously unselected package gir1.2-javascriptcoregtk-4.0:amd64.
Preparing to unpack .../04-gir1.2-javascriptcoregtk-4.0_2.28.2-0ubuntu0.20.04.1_amd64.deb ...
Unpacking gir1.2-javascriptcoregtk-4.0:amd64 (2.28.2-0ubuntu0.20.04.1) ...
Selecting previously unselected package gir1.2-soup-2.4:amd64.
Preparing to unpack .../05-gir1.2-soup-2.4_2.70.0-1_amd64.deb ...
Unpacking gir1.2-soup-2.4:amd64 (2.70.0-1) ...
Selecting previously unselected package gir1.2-webkit2-4.0:amd64.
Preparing to unpack .../06-gir1.2-webkit2-4.0_2.28.2-0ubuntu0.20.04.1_amd64.deb ...
Unpacking gir1.2-webkit2-4.0:amd64 (2.28.2-0ubuntu0.20.04.1) ...
Selecting previously unselected package libasound2-dev:amd64.
Preparing to unpack .../07-libasound2-dev_1.2.2-2.1_amd64.deb ...
Unpacking libasound2-dev:amd64 (1.2.2-2.1) ...
Selecting previously unselected package libdbus-1-dev:amd64.
Preparing to unpack .../08-libdbus-1-dev_1.12.16-2ubuntu2_amd64.deb ...
Unpacking libdbus-1-dev:amd64 (1.12.16-2ubuntu2) ...
Selecting previously unselected package x11proto-record-dev.
Preparing to unpack .../09-x11proto-record-dev_2019.2-1ubuntu1_all.deb ...
Unpacking x11proto-record-dev (2019.2-1ubuntu1) ...
Selecting previously unselected package libxtst-dev:amd64.
Preparing to unpack .../10-libxtst-dev_2%3a1.2.3-1_amd64.deb ...
Unpacking libxtst-dev:amd64 (2:1.2.3-1) ...
Selecting previously unselected package libatspi2.0-dev:amd64.
Preparing to unpack .../11-libatspi2.0-dev_2.36.0-2_amd64.deb ...
Unpacking libatspi2.0-dev:amd64 (2.36.0-2) ...
Selecting previously unselected package libatk-bridge2.0-dev:amd64.
Preparing to unpack .../12-libatk-bridge2.0-dev_2.34.1-3_amd64.deb ...
Unpacking libatk-bridge2.0-dev:amd64 (2.34.1-3) ...
Selecting previously unselected package libbrotli-dev.
Preparing to unpack .../13-libbrotli-dev_1.0.7-6build1_amd64.deb ...
Unpacking libbrotli-dev (1.0.7-6build1) ...
Selecting previously unselected package libslang2-dev:amd64.
Preparing to unpack .../14-libslang2-dev_2.3.2-4_amd64.deb ...
Unpacking libslang2-dev:amd64 (2.3.2-4) ...
Selecting previously unselected package libcaca-dev.
Preparing to unpack .../15-libcaca-dev_0.99.beta19-2.1ubuntu1_amd64.deb ...
Unpacking libcaca-dev (0.99.beta19-2.1ubuntu1) ...
Selecting previously unselected package libepoxy-dev:amd64.
Preparing to unpack .../16-libepoxy-dev_1.5.4-1_amd64.deb ...
Unpacking libepoxy-dev:amd64 (1.5.4-1) ...
Selecting previously unselected package libwayland-bin.
Preparing to unpack .../17-libwayland-bin_1.18.0-1_amd64.deb ...
Unpacking libwayland-bin (1.18.0-1) ...
Selecting previously unselected package libwayland-dev:amd64.
Preparing to unpack .../18-libwayland-dev_1.18.0-1_amd64.deb ...
Unpacking libwayland-dev:amd64 (1.18.0-1) ...
Selecting previously unselected package libxkbcommon-dev:amd64.
Preparing to unpack .../19-libxkbcommon-dev_0.10.0-1_amd64.deb ...
Unpacking libxkbcommon-dev:amd64 (0.10.0-1) ...
Selecting previously unselected package wayland-protocols.
Preparing to unpack .../20-wayland-protocols_1.20-1_all.deb ...
Unpacking wayland-protocols (1.20-1) ...
Selecting previously unselected package libgtk-3-dev:amd64.
Preparing to unpack .../21-libgtk-3-dev_3.24.18-1ubuntu1_amd64.deb ...
Unpacking libgtk-3-dev:amd64 (3.24.18-1ubuntu1) ...
Selecting previously unselected package libjpeg-turbo8-dev:amd64.
Preparing to unpack .../22-libjpeg-turbo8-dev_2.0.3-0ubuntu1_amd64.deb ...
Unpacking libjpeg-turbo8-dev:amd64 (2.0.3-0ubuntu1) ...
Selecting previously unselected package libjpeg8-dev:amd64.
Preparing to unpack .../23-libjpeg8-dev_8c-2ubuntu8_amd64.deb ...
Unpacking libjpeg8-dev:amd64 (8c-2ubuntu8) ...
Selecting previously unselected package libjpeg-dev:amd64.
Preparing to unpack .../24-libjpeg-dev_8c-2ubuntu8_amd64.deb ...
Unpacking libjpeg-dev:amd64 (8c-2ubuntu8) ...
Selecting previously unselected package libnotify-dev:amd64.
Preparing to unpack .../25-libnotify-dev_0.7.9-1ubuntu2_amd64.deb ...
Unpacking libnotify-dev:amd64 (0.7.9-1ubuntu2) ...
Selecting previously unselected package libpsl-dev:amd64.
Preparing to unpack .../26-libpsl-dev_0.21.0-1ubuntu1_amd64.deb ...
Unpacking libpsl-dev:amd64 (0.21.0-1ubuntu1) ...
Selecting previously unselected package libpulse-dev:amd64.
Preparing to unpack .../27-libpulse-dev_1%3a13.99.1-1ubuntu3_amd64.deb ...
Unpacking libpulse-dev:amd64 (1:13.99.1-1ubuntu3) ...
Selecting previously unselected package libsdl1.2-dev.
Preparing to unpack .../28-libsdl1.2-dev_1.2.15+dfsg2-5_amd64.deb ...
Unpacking libsdl1.2-dev (1.2.15+dfsg2-5) ...
Selecting previously unselected package libsqlite3-dev:amd64.
Preparing to unpack .../29-libsqlite3-dev_3.31.1-4_amd64.deb ...
Unpacking libsqlite3-dev:amd64 (3.31.1-4) ...
Selecting previously unselected package libxml2-dev:amd64.
Preparing to unpack .../30-libxml2-dev_2.9.10+dfsg-5_amd64.deb ...
Unpacking libxml2-dev:amd64 (2.9.10+dfsg-5) ...
Selecting previously unselected package libsoup2.4-dev:amd64.
Preparing to unpack .../31-libsoup2.4-dev_2.70.0-1_amd64.deb ...
Unpacking libsoup2.4-dev:amd64 (2.70.0-1) ...
Selecting previously unselected package libjbig-dev:amd64.
Preparing to unpack .../32-libjbig-dev_2.1-3.1build1_amd64.deb ...
Unpacking libjbig-dev:amd64 (2.1-3.1build1) ...
Selecting previously unselected package liblzma-dev:amd64.
Preparing to unpack .../33-liblzma-dev_5.2.4-1_amd64.deb ...
Unpacking liblzma-dev:amd64 (5.2.4-1) ...
Selecting previously unselected package libtiffxx5:amd64.
Preparing to unpack .../34-libtiffxx5_4.1.0+git191117-2build1_amd64.deb ...
Unpacking libtiffxx5:amd64 (4.1.0+git191117-2build1) ...
Selecting previously unselected package libtiff-dev:amd64.
Preparing to unpack .../35-libtiff-dev_4.1.0+git191117-2build1_amd64.deb ...
Unpacking libtiff-dev:amd64 (4.1.0+git191117-2build1) ...
Selecting previously unselected package wx3.0-headers.
Preparing to unpack .../36-wx3.0-headers_3.0.4+dfsg-15build1_all.deb ...
Unpacking wx3.0-headers (3.0.4+dfsg-15build1) ...
Selecting previously unselected package libwxbase3.0-dev:amd64.
Preparing to unpack .../37-libwxbase3.0-dev_3.0.4+dfsg-15build1_amd64.deb ...
Unpacking libwxbase3.0-dev:amd64 (3.0.4+dfsg-15build1) ...
Selecting previously unselected package libwxgtk-webview3.0-gtk3-0v5:amd64.
Preparing to unpack .../38-libwxgtk-webview3.0-gtk3-0v5_3.0.4+dfsg-15build1_amd64.deb ...
Unpacking libwxgtk-webview3.0-gtk3-0v5:amd64 (3.0.4+dfsg-15build1) ...
Selecting previously unselected package wx-common.
Preparing to unpack .../39-wx-common_3.0.4+dfsg-15build1_amd64.deb ...
Unpacking wx-common (3.0.4+dfsg-15build1) ...
Selecting previously unselected package libwxgtk3.0-gtk3-dev:amd64.
Preparing to unpack .../40-libwxgtk3.0-gtk3-dev_3.0.4+dfsg-15build1_amd64.deb ...
Unpacking libwxgtk3.0-gtk3-dev:amd64 (3.0.4+dfsg-15build1) ...
Selecting previously unselected package libwxgtk-webview3.0-gtk3-dev:amd64.
Preparing to unpack .../41-libwxgtk-webview3.0-gtk3-dev_3.0.4+dfsg-15build1_amd64.deb ...
Unpacking libwxgtk-webview3.0-gtk3-dev:amd64 (3.0.4+dfsg-15build1) ...
Selecting previously unselected package libjavascriptcoregtk-4.0-dev:amd64.
Preparing to unpack .../42-libjavascriptcoregtk-4.0-dev_2.28.2-0ubuntu0.20.04.1_amd64.deb ...
Unpacking libjavascriptcoregtk-4.0-dev:amd64 (2.28.2-0ubuntu0.20.04.1) ...
Selecting previously unselected package libwebkit2gtk-4.0-dev:amd64.
Preparing to unpack .../43-libwebkit2gtk-4.0-dev_2.28.2-0ubuntu0.20.04.1_amd64.deb ...
Unpacking libwebkit2gtk-4.0-dev:amd64 (2.28.2-0ubuntu0.20.04.1) ...
Setting up libslang2-dev:amd64 (2.3.2-4) ...
Setting up wx-common (3.0.4+dfsg-15build1) ...
Setting up libjpeg-turbo8-dev:amd64 (2.0.3-0ubuntu1) ...
Setting up libnotify-dev:amd64 (0.7.9-1ubuntu2) ...
Setting up freeglut3:amd64 (2.8.1-3) ...
Setting up libxkbcommon-dev:amd64 (0.10.0-1) ...
Setting up libepoxy-dev:amd64 (1.5.4-1) ...
Setting up libjbig-dev:amd64 (2.1-3.1build1) ...
Setting up gir1.2-atspi-2.0:amd64 (2.36.0-2) ...
Setting up gir1.2-javascriptcoregtk-4.0:amd64 (2.28.2-0ubuntu0.20.04.1) ...
Setting up libjavascriptcoregtk-4.0-dev:amd64 (2.28.2-0ubuntu0.20.04.1) ...
Setting up gir1.2-soup-2.4:amd64 (2.70.0-1) ...
Setting up libpsl-dev:amd64 (0.21.0-1ubuntu1) ...
Setting up libwayland-bin (1.18.0-1) ...
Setting up libxml2-dev:amd64 (2.9.10+dfsg-5) ...
Setting up libsqlite3-dev:amd64 (3.31.1-4) ...
Setting up libdbus-1-dev:amd64 (1.12.16-2ubuntu2) ...
Setting up libwxgtk-webview3.0-gtk3-0v5:amd64 (3.0.4+dfsg-15build1) ...
Setting up libglu1-mesa-dev:amd64 (9.0.1-1build1) ...
Setting up wx3.0-headers (3.0.4+dfsg-15build1) ...
Setting up libpulse-dev:amd64 (1:13.99.1-1ubuntu3) ...
Setting up liblzma-dev:amd64 (5.2.4-1) ...
Setting up wayland-protocols (1.20-1) ...
Setting up x11proto-record-dev (2019.2-1ubuntu1) ...
Setting up libjpeg8-dev:amd64 (8c-2ubuntu8) ...
Setting up libasound2-dev:amd64 (1.2.2-2.1) ...
Setting up libcaca-dev (0.99.beta19-2.1ubuntu1) ...
Setting up libbrotli-dev (1.0.7-6build1) ...
Setting up libtiffxx5:amd64 (4.1.0+git191117-2build1) ...
Setting up libxtst-dev:amd64 (2:1.2.3-1) ...
Setting up gir1.2-webkit2-4.0:amd64 (2.28.2-0ubuntu0.20.04.1) ...
Setting up libsoup2.4-dev:amd64 (2.70.0-1) ...
Setting up libjpeg-dev:amd64 (8c-2ubuntu8) ...
Setting up libwxbase3.0-dev:amd64 (3.0.4+dfsg-15build1) ...
update-alternatives: using /usr/lib/x86_64-linux-gnu/wx/config/base-unicode-3.0 to provide /usr/bin/wx-config (wx-config) in auto mode
Setting up libwxgtk3.0-gtk3-dev:amd64 (3.0.4+dfsg-15build1) ...
update-alternatives: using /usr/lib/x86_64-linux-gnu/wx/config/gtk3-unicode-3.0 to provide /usr/bin/wx-config (wx-config) in auto mode
Setting up libsdl1.2-dev (1.2.15+dfsg2-5) ...
Setting up libwayland-dev:amd64 (1.18.0-1) ...
Setting up freeglut3-dev:amd64 (2.8.1-3) ...
Setting up libtiff-dev:amd64 (4.1.0+git191117-2build1) ...
Setting up libwxgtk-webview3.0-gtk3-dev:amd64 (3.0.4+dfsg-15build1) ...
Processing triggers for sgml-base (1.29.1) ...
Setting up libatspi2.0-dev:amd64 (2.36.0-2) ...
Processing triggers for libglib2.0-0:amd64 (2.64.2-1~fakesync1) ...
Processing triggers for libglib2.0-0:i386 (2.64.2-1~fakesync1) ...
Processing triggers for libc-bin (2.31-0ubuntu9) ...
Setting up libatk-bridge2.0-dev:amd64 (2.34.1-3) ...
Processing triggers for man-db (2.9.1-1) ...
Setting up libgtk-3-dev:amd64 (3.24.18-1ubuntu1) ...
Setting up libwebkit2gtk-4.0-dev:amd64 (2.28.2-0ubuntu0.20.04.1) ...
$ pip install --user wxpythonCollecting wxpython
  Using cached wxPython-4.1.0.tar.gz (65.8 MB)
Requirement already satisfied: pillow in /usr/lib/python3/dist-packages (from wxpython) (7.0.0)
Requirement already satisfied: six in /usr/lib/python3/dist-packages (from wxpython) (1.14.0)
Requirement already satisfied: numpy in /usr/lib/python3/dist-packages (from wxpython) (1.17.4)
Building wheels for collected packages: wxpython
  Building wheel for wxpython (setup.py) ... done
  Created wheel for wxpython: filename=wxPython-4.1.0-cp38-cp38-linux_x86_64.whl size=148565770 sha256=79b5f89b8b4886cdb07dc8aed84f4c0763477ad7bd8ab1094b63d1ec4f67ebf7
  Stored in directory: /home/sgmuwa/.cache/pip/wheels/26/57/6b/4a02f0c56fa6c4f9a3b4548c2e59bec5756c220edcae1f9450
Successfully built wxpython
Installing collected packages: wxpython
Successfully installed wxpython-4.1.0
$ python
Python 3.8.2 (default, Apr 27 2020, 15:53:34) 
[GCC 9.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import wx
>>> exit()
$ GoSync 
Traceback (most recent call last):
  File "/home/sgmuwa/.local/bin/GoSync", line 5, in <module>
    from GoSync.GoSync import main
  File "/home/sgmuwa/.local/lib/python3.8/site-packages/GoSync/GoSync.py", line 20, in <module>
    import sys, os, wx, GoSyncController, GoSyncModel
ModuleNotFoundError: No module named 'GoSyncController'

Python 2

$ python2
Python 2.7.18rc1 (default, Apr  7 2020, 12:05:55) 
[GCC 9.3.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import wx
>>> exit()

It looks like wx works in Python v2.

$ cd ~/.local/bin/
$ /usr/bin/python2 ./GoSync
Traceback (most recent call last):
  File "./GoSync", line 5, in <module>
    from GoSync.GoSync import main
ImportError: No module named GoSync.GoSync

Installation log:

$ pip install --user gosync
Collecting gosync
  Downloading GoSync-0.4-py2.py3-none-any.whl (154 kB)
     |████████████████████████████████| 154 kB 994 kB/s 
Collecting watchdog
  Downloading watchdog-0.10.2.tar.gz (95 kB)
     |████████████████████████████████| 95 kB 684 kB/s 
Collecting pydrive
  Downloading PyDrive-1.3.1.tar.gz (987 kB)
     |████████████████████████████████| 987 kB 1.8 MB/s 
Collecting google-api-python-client
  Downloading google_api_python_client-1.8.2-py3-none-any.whl (58 kB)
     |████████████████████████████████| 58 kB 730 kB/s 
Collecting pathtools>=0.1.1
  Downloading pathtools-0.1.2.tar.gz (11 kB)
Requirement already satisfied: PyYAML>=3.0 in /usr/lib/python3/dist-packages (from pydrive->gosync) (5.3.1)
Requirement already satisfied: oauth2client>=4.0.0 in ./.local/lib/python3.8/site-packages (from pydrive->gosync) (4.1.3)
Collecting google-auth>=1.4.1
  Downloading google_auth-1.14.1-py2.py3-none-any.whl (89 kB)
     |████████████████████████████████| 89 kB 742 kB/s 
Collecting google-api-core<2dev,>=1.13.0
  Downloading google_api_core-1.17.0-py2.py3-none-any.whl (70 kB)
     |████████████████████████████████| 70 kB 740 kB/s 
Collecting google-auth-httplib2>=0.0.3
  Downloading google_auth_httplib2-0.0.3-py2.py3-none-any.whl (6.3 kB)
Collecting uritemplate<4dev,>=3.0.0
  Downloading uritemplate-3.0.1-py2.py3-none-any.whl (15 kB)
Requirement already satisfied: six<2dev,>=1.6.1 in /usr/lib/python3/dist-packages (from google-api-python-client->gosync) (1.14.0)
Requirement already satisfied: httplib2<1dev,>=0.9.2 in /usr/lib/python3/dist-packages (from google-api-python-client->gosync) (0.14.0)
Requirement already satisfied: pyasn1-modules>=0.0.5 in /usr/lib/python3/dist-packages (from oauth2client>=4.0.0->pydrive->gosync) (0.2.1)
Requirement already satisfied: pyasn1>=0.1.7 in /usr/lib/python3/dist-packages (from oauth2client>=4.0.0->pydrive->gosync) (0.4.2)
Requirement already satisfied: rsa>=3.1.4 in ./.local/lib/python3.8/site-packages (from oauth2client>=4.0.0->pydrive->gosync) (4.0)
Collecting cachetools<5.0,>=2.0.0
  Downloading cachetools-4.1.0-py3-none-any.whl (10 kB)
Requirement already satisfied: setuptools>=40.3.0 in /usr/lib/python3/dist-packages (from google-auth>=1.4.1->google-api-python-client->gosync) (45.2.0)
Collecting googleapis-common-protos<2.0dev,>=1.6.0
  Downloading googleapis-common-protos-1.51.0.tar.gz (35 kB)
Requirement already satisfied: pytz in ./.local/lib/python3.8/site-packages (from google-api-core<2dev,>=1.13.0->google-api-python-client->gosync) (2019.3)
Requirement already satisfied: protobuf>=3.4.0 in ./.local/lib/python3.8/site-packages (from google-api-core<2dev,>=1.13.0->google-api-python-client->gosync) (3.11.3)
Requirement already satisfied: requests<3.0.0dev,>=2.18.0 in /usr/lib/python3/dist-packages (from google-api-core<2dev,>=1.13.0->google-api-python-client->gosync) (2.22.0)
Building wheels for collected packages: watchdog, pydrive, pathtools, googleapis-common-protos
  Building wheel for watchdog (setup.py) ... done
  Created wheel for watchdog: filename=watchdog-0.10.2-py3-none-any.whl size=73602 sha256=488e94dab26aa1d016f27a58c0dff77e5c3609b9484677c0c94e410f4b223879
  Stored in directory: /home/sgmuwa/.cache/pip/wheels/4e/14/01/1676612f5b23c641868de61d36ac2d5be12f4eec6c087fbd62
  Building wheel for pydrive (setup.py) ... done
  Created wheel for pydrive: filename=PyDrive-1.3.1-py3-none-any.whl size=27434 sha256=d878f918f55c50f3707c98a862c7d5cfeae15900c2eda2757265890503c539ae
  Stored in directory: /home/sgmuwa/.cache/pip/wheels/c6/14/12/ccdcc5d3b41661f360f9c7d9f7ea9d1879a5f85aa4ecc8cc6f
  Building wheel for pathtools (setup.py) ... done
  Created wheel for pathtools: filename=pathtools-0.1.2-py3-none-any.whl size=8784 sha256=162aadf422f84608edf5aa0c61376c87b2a7ab69926c3f93d89c66cb569ff003
  Stored in directory: /home/sgmuwa/.cache/pip/wheels/4c/8e/7e/72fbc243e1aeecae64a96875432e70d4e92f3d2d18123be004
  Building wheel for googleapis-common-protos (setup.py) ... done
  Created wheel for googleapis-common-protos: filename=googleapis_common_protos-1.51.0-py3-none-any.whl size=77575 sha256=aacb16485d4c71356975b562a931714d2724839d724761a01f101bfdacc252b3
  Stored in directory: /home/sgmuwa/.cache/pip/wheels/0d/81/d7/c82ed88e8977ef82d567716c51defc3fd8775c78fa5c4efc7b
Successfully built watchdog pydrive pathtools googleapis-common-protos
Installing collected packages: pathtools, watchdog, cachetools, google-auth, googleapis-common-protos, google-api-core, google-auth-httplib2, uritemplate, google-api-python-client, pydrive, gosync
Successfully installed cachetools-4.1.0 google-api-core-1.17.0 google-api-python-client-1.8.2 google-auth-1.14.1 google-auth-httplib2-0.0.3 googleapis-common-protos-1.51.0 gosync-0.4 pathtools-0.1.2 pydrive-1.3.1 uritemplate-3.0.1 watchdog-0.10.2

About system

All information about the system is recorded somewhere at the initial stage of the search for a solution.

OS, graphical shell and etc

Operating System: Ubuntu 20.04 KDE Plasma Version: 5.18.4 KDE Frameworks Version: 5.68.0 Qt Version: 5.12.8 Kernel Version: 5.4.0-28-generic OS Type: 64-bit Processors: 2 × Intel® Core™2 Duo CPU P8400 @ 2.26GHz Memory: 2,9 GiB

Packages GTK

$ LC_ALL=0 apt list *gtk* --installed    
Listing... Done
breeze-gtk-theme/focal,now 5.18.4.1-0ubuntu1 amd64 [installed,automatic]
deluge-gtk/focal,focal,now 2.0.3-2 all [installed,automatic]
gir1.2-gtk-3.0/focal,now 3.24.18-1ubuntu1 amd64 [installed,automatic]
gstreamer1.0-gtk3/focal,now 1.16.2-1ubuntu2 amd64 [installed,automatic]
gtk-update-icon-cache/focal,now 3.24.18-1ubuntu1 amd64 [installed,automatic]
gtk2-engines-pixbuf/focal,now 2.24.32-4ubuntu4 amd64 [installed,automatic]
ibus-gtk3/focal,now 1.5.22-2ubuntu2 amd64 [installed,automatic]
ibus-gtk/focal,now 1.5.22-2ubuntu2 amd64 [installed,automatic]
kde-config-gtk-style/focal,now 4:5.18.4.1-0ubuntu1 amd64 [installed,automatic]
libcanberra-gtk3-0/focal,now 0.30-7ubuntu1 amd64 [installed,automatic]
libcanberra-gtk3-module/focal,now 0.30-7ubuntu1 amd64 [installed,automatic]
libdbusmenu-gtk3-4/focal,now 16.04.1+18.10.20180917-0ubuntu6 amd64 [installed,automatic]
libdbusmenu-gtk4/focal,now 16.04.1+18.10.20180917-0ubuntu6 amd64 [installed,automatic]
libgtk-3-0/focal,now 3.24.18-1ubuntu1 amd64 [installed,automatic]
libgtk-3-bin/focal,now 3.24.18-1ubuntu1 amd64 [installed,automatic]
libgtk-3-common/focal,focal,now 3.24.18-1ubuntu1 all [installed,automatic]
libgtk2.0-0/focal,now 2.24.32-4ubuntu4 amd64 [installed,automatic]
libgtk2.0-bin/focal,now 2.24.32-4ubuntu4 amd64 [installed,automatic]
libgtk2.0-common/focal,focal,now 2.24.32-4ubuntu4 all [installed,automatic]
libgtk3-perl/focal,focal,now 0.037-1 all [installed,automatic]
libgtkglext1/focal,now 1.2.0-9 amd64 [installed,automatic]
libgtkmm-2.4-1v5/focal,now 1:2.24.5-4ubuntu2 amd64 [installed,automatic]
libgtkmm-3.0-1v5/focal,now 3.24.2-1build1 amd64 [installed,automatic]
libgtksourceview-4-0/focal,now 4.6.0-1 amd64 [installed,automatic]
libgtksourceview-4-common/focal,focal,now 4.6.0-1 all [installed,automatic]
libgtkspell0/focal,now 2.0.16-1.3 amd64 [installed,automatic]
libjavascriptcoregtk-4.0-18/focal-updates,focal-security,now 2.28.2-0ubuntu0.20.04.1 amd64 [installed,automatic]
libreoffice-gtk3/focal,now 1:6.4.2-0ubuntu3 amd64 [installed,automatic]
libwebkit2gtk-4.0-37/focal-updates,focal-security,now 2.28.2-0ubuntu0.20.04.1 amd64 [installed,automatic]
libwmf0.2-7-gtk/focal,now 0.2.8.4-17ubuntu1 amd64 [installed,automatic]
libwxgtk3.0-gtk3-0v5/focal,now 3.0.4+dfsg-15build1 amd64 [installed,automatic]
python-wxgtk3.0/focal,now 3.0.2.0+dfsg-8build1 amd64 [installed,automatic]
redshift-gtk/focal,focal,now 1.12-2 all [installed]
software-properties-gtk/focal,focal,now 0.98.9 all [installed,automatic]

Python

$ LC_ALL=0 apt list *python* --installed  
Listing... Done
libboost-python1.71.0/focal,now 1.71.0-6ubuntu6 amd64 [installed,automatic]
libpython2-stdlib/focal,now 2.7.17-2ubuntu4 amd64 [installed,automatic]
libpython2.7-minimal/focal,now 2.7.18~rc1-2 amd64 [installed,automatic]
libpython2.7-stdlib/focal,now 2.7.18~rc1-2 amd64 [installed,automatic]
libpython3-dev/focal,now 3.8.2-0ubuntu2 amd64 [installed,automatic]
libpython3-stdlib/focal,now 3.8.2-0ubuntu2 amd64 [installed,automatic]
libpython3.8-dev/focal-updates,focal-security,now 3.8.2-1ubuntu1.1 amd64 [installed,automatic]
libpython3.8-minimal/focal-updates,focal-security,now 3.8.2-1ubuntu1.1 amd64 [installed,automatic]
libpython3.8-stdlib/focal-updates,focal-security,now 3.8.2-1ubuntu1.1 amd64 [installed,automatic]
libpython3.8/focal-updates,focal-security,now 3.8.2-1ubuntu1.1 amd64 [installed,automatic]
libreoffice-script-provider-python/focal,focal,now 1:6.4.2-0ubuntu3 all [installed,automatic]
python-apt-common/focal,focal,now 2.0.0 all [installed,automatic]
python-backports.functools-lru-cache/focal,focal,now 1.5-3build1 all [installed,automatic]
python-bs4/focal,focal,now 4.8.2-1 all [installed,automatic]
python-chardet/focal,focal,now 3.0.4-4build1 all [installed,automatic]
python-html5lib/focal,focal,now 1.0.1-2 all [installed,automatic]
python-lxml/focal,now 4.5.0-1 amd64 [installed,automatic]
python-numpy/focal,now 1:1.16.5-2ubuntu7 amd64 [installed,automatic]
python-pip-whl/focal,focal,now 20.0.2-5ubuntu1 all [installed,automatic]
python-pkg-resources/focal,focal,now 44.0.0-2 all [installed,automatic]
python-six/focal,focal,now 1.14.0-2 all [installed,automatic]
python-soupsieve/focal,focal,now 1.9.5+dfsg-1 all [installed,automatic]
python-webencodings/focal,focal,now 0.5.1-1ubuntu1 all [installed,automatic]
python-wxgtk3.0/focal,now 3.0.2.0+dfsg-8build1 amd64 [installed,automatic]
python-wxtools/focal,focal,now 3.0.2.0+dfsg-8build1 all [installed,auto-removable]
python-wxversion/focal,focal,now 3.0.2.0+dfsg-8build1 all [installed,automatic]
python2-minimal/focal,now 2.7.17-2ubuntu4 amd64 [installed,automatic]
python2.7-minimal/focal,now 2.7.18~rc1-2 amd64 [installed,automatic]
python2.7/focal,now 2.7.18~rc1-2 amd64 [installed,automatic]
python2/focal,now 2.7.17-2ubuntu4 amd64 [installed,automatic]
python3-apport/focal,focal,now 2.20.11-0ubuntu27 all [installed,automatic]
python3-apt/focal,now 2.0.0 amd64 [installed,automatic]
python3-atomicwrites/focal,focal,now 1.1.5-2build1 all [installed,automatic]
python3-attr/focal,focal,now 19.3.0-2 all [installed,automatic]
python3-automat/focal,focal,now 0.8.0-1ubuntu1 all [installed,automatic]
python3-blinker/focal,focal,now 1.4+dfsg1-0.3ubuntu1 all [installed,automatic]
python3-cached-property/focal,focal,now 1.5.1-4 all [installed,automatic]
python3-cairo/focal,now 1.16.2-2ubuntu2 amd64 [installed,automatic]
python3-certifi/focal,focal,now 2019.11.28-1 all [installed,automatic]
python3-cffi-backend/focal,now 1.14.0-1build1 amd64 [installed,automatic]
python3-chardet/focal,focal,now 3.0.4-4build1 all [installed,automatic]
python3-click/focal,focal,now 7.0-3 all [installed,automatic]
python3-colorama/focal,focal,now 0.4.3-1build1 all [installed,automatic]
python3-constantly/focal,focal,now 15.1.0-1build1 all [installed,automatic]
python3-crypto/focal,now 2.6.1-13ubuntu2 amd64 [installed,automatic]
python3-cryptography/focal,now 2.8-3 amd64 [installed,automatic]
python3-cups/focal,now 1.9.73-3build1 amd64 [installed,automatic]
python3-cupshelpers/focal,focal,now 1.5.12-0ubuntu1 all [installed,automatic]
python3-dateutil/focal,focal,now 2.7.3-3ubuntu1 all [installed,automatic]
python3-dbus.mainloop.pyqt5/focal,now 5.14.1+dfsg-3build1 amd64 [installed,automatic]
python3-dbus/focal,now 1.2.16-1build1 amd64 [installed,automatic]
python3-debian/focal,focal,now 0.1.36ubuntu1 all [installed,automatic]
python3-dev/focal,now 3.8.2-0ubuntu2 amd64 [installed,automatic]
python3-distro-info/focal,focal,now 0.23ubuntu1 all [installed,automatic]
python3-distro/focal,focal,now 1.4.0-1 all [installed,automatic]
python3-distupgrade/focal,focal,now 1:20.04.18 all [installed,automatic]
python3-distutils/focal,focal,now 3.8.2-1ubuntu1 all [installed,automatic]
python3-docker/focal,focal,now 4.1.0-1 all [installed,automatic]
python3-dockerpty/focal,focal,now 0.4.1-2 all [installed,automatic]
python3-docopt/focal,focal,now 0.6.2-2.2ubuntu1 all [installed,automatic]
python3-entrypoints/focal,focal,now 0.3-2ubuntu1 all [installed,automatic]
python3-geoip/focal,now 1.3.2-3build1 amd64 [installed,automatic]
python3-gi-cairo/focal,now 3.36.0-1 amd64 [installed,automatic]
python3-gi/focal,now 3.36.0-1 amd64 [installed,automatic]
python3-gpg/focal,now 1.13.1-7ubuntu2 amd64 [installed,automatic]
python3-hamcrest/focal,focal,now 1.9.0-3 all [installed,automatic]
python3-httplib2/focal,focal,now 0.14.0-1ubuntu1 all [installed,automatic]
python3-hyperlink/focal,focal,now 19.0.0-1 all [installed,automatic]
python3-ibus-1.0/focal,focal,now 1.5.22-2ubuntu2 all [installed,automatic]
python3-idna/focal,focal,now 2.8-1 all [installed,automatic]
python3-importlib-metadata/focal,focal,now 1.5.0-1 all [installed,automatic]
python3-incremental/focal,focal,now 16.10.1-3.2 all [installed,automatic]
python3-jsonschema/focal,focal,now 3.2.0-0ubuntu2 all [installed,automatic]
python3-jwt/focal,focal,now 1.7.1-2ubuntu2 all [installed,automatic]
python3-keyring/focal,focal,now 18.0.1-2ubuntu1 all [installed,automatic]
python3-keyrings.alt/focal,focal,now 3.4.0-1 all [installed,automatic]
python3-launchpadlib/focal,focal,now 1.10.13-1 all [installed,automatic]
python3-lazr.restfulclient/focal,focal,now 0.14.2-2build1 all [installed,automatic]
python3-lazr.uri/focal,focal,now 1.0.3-4build1 all [installed,automatic]
python3-ldb/focal-updates,focal-security,now 2:2.0.10-0ubuntu0.20.04.1 amd64 [installed,automatic]
python3-lib2to3/focal,focal,now 3.8.2-1ubuntu1 all [installed,automatic]
python3-libtorrent/focal,now 1.1.13-1.1build2 amd64 [installed,automatic]
python3-mako/focal,focal,now 1.1.0+ds1-1ubuntu2 all [installed,automatic]
python3-markupsafe/focal,now 1.1.0-1build2 amd64 [installed,automatic]
python3-minimal/focal,now 3.8.2-0ubuntu2 amd64 [installed,automatic]
python3-more-itertools/focal,focal,now 4.2.0-1build1 all [installed,automatic]
python3-netifaces/focal,now 0.10.4-1ubuntu4 amd64 [installed,automatic]
python3-numpy/focal,now 1:1.17.4-5ubuntu3 amd64 [installed,automatic]
python3-oauthlib/focal,focal,now 3.1.0-1ubuntu2 all [installed,automatic]
python3-olefile/focal,focal,now 0.46-2 all [installed,automatic]
python3-openssl/focal,focal,now 19.0.0-1build1 all [installed,automatic]
python3-packaging/focal,focal,now 20.3-1 all [installed,automatic]
python3-pexpect/focal,focal,now 4.6.0-1build1 all [installed,automatic]
python3-pil/focal,now 7.0.0-4build1 amd64 [installed,automatic]
python3-pip/focal,focal,now 20.0.2-5ubuntu1 all [installed]
python3-pkg-resources/focal,focal,now 45.2.0-1 all [installed,automatic]
python3-pluggy/focal,focal,now 0.13.0-2 all [installed,automatic]
python3-problem-report/focal,focal,now 2.20.11-0ubuntu27 all [installed,automatic]
python3-ptyprocess/focal,focal,now 0.6.0-1ubuntu1 all [installed,automatic]
python3-py/focal,focal,now 1.8.1-1 all [installed,automatic]
python3-pyasn1-modules/focal,focal,now 0.2.1-0.2build1 all [installed,automatic]
python3-pyasn1/focal,focal,now 0.4.2-3build1 all [installed,automatic]
python3-pygame/focal,now 1.9.6+dfsg-2build1 amd64 [installed,automatic]
python3-pygments/focal,focal,now 2.3.1+dfsg-1ubuntu2 all [installed,automatic]
python3-pyparsing/focal,focal,now 2.4.6-1 all [installed,automatic]
python3-pyqt5/focal,now 5.14.1+dfsg-3build1 amd64 [installed,automatic]
python3-pyrsistent/focal,now 0.15.5-1build1 amd64 [installed,automatic]
python3-pytest/focal,focal,now 4.6.9-1 all [installed,automatic]
python3-pyxattr/focal,now 0.6.1-2 amd64 [installed,automatic]
python3-rencode/focal,now 1.0.6-1build1 amd64 [installed,automatic]
python3-renderpm/focal,now 3.5.34-1ubuntu1 amd64 [installed,automatic]
python3-reportlab-accel/focal,now 3.5.34-1ubuntu1 amd64 [installed,automatic]
python3-reportlab/focal,focal,now 3.5.34-1ubuntu1 all [installed,automatic]
python3-requests-unixsocket/focal,focal,now 0.2.0-2 all [installed,automatic]
python3-requests/focal,focal,now 2.22.0-2ubuntu1 all [installed,automatic]
python3-samba/focal-updates,focal-security,now 2:4.11.6+dfsg-0ubuntu1.1 amd64 [installed,automatic]
python3-secretstorage/focal,focal,now 2.3.1-2ubuntu1 all [installed,automatic]
python3-service-identity/focal,focal,now 18.1.0-5build1 all [installed,automatic]
python3-setproctitle/focal,now 1.1.10-1ubuntu1 amd64 [installed,automatic]
python3-setuptools/focal,focal,now 45.2.0-1 all [installed,automatic]
python3-simplejson/focal,now 3.16.0-2ubuntu2 amd64 [installed,automatic]
python3-sip/focal,now 4.19.21+dfsg-1build1 amd64 [installed,automatic]
python3-six/focal,focal,now 1.14.0-2 all [installed,automatic]
python3-software-properties/focal,focal,now 0.98.9 all [installed,automatic]
python3-systemd/focal,now 234-3build2 amd64 [installed,automatic]
python3-talloc/focal,now 2.3.0-3ubuntu1 amd64 [installed,automatic]
python3-tdb/focal,now 1.4.2-3build1 amd64 [installed,automatic]
python3-texttable/focal,focal,now 1.6.2-2 all [installed,automatic]
python3-tk/focal,now 3.8.2-1ubuntu1 amd64 [installed,automatic]
python3-twisted-bin/focal,now 18.9.0-11 amd64 [installed,automatic]
python3-twisted/focal,focal,now 18.9.0-11 all [installed,automatic]
python3-uno/focal,now 1:6.4.2-0ubuntu3 amd64 [installed,automatic]
python3-update-manager/focal,focal,now 1:20.04.9 all [installed,automatic]
python3-urllib3/focal,focal,now 1.25.8-2 all [installed,automatic]
python3-wadllib/focal,focal,now 1.3.3-3build1 all [installed,automatic]
python3-wcwidth/focal,focal,now 0.1.8+dfsg1-3 all [installed,automatic]
python3-websocket/focal,focal,now 0.53.0-2ubuntu1 all [installed,automatic]
python3-wheel/focal,focal,now 0.34.2-1 all [installed,automatic]
python3-xdg/focal,focal,now 0.26-1ubuntu1 all [installed,automatic]
python3-xkit/focal,focal,now 0.5.0ubuntu4 all [installed,automatic]
python3-yaml/focal,now 5.3.1-1 amd64 [installed,automatic]
python3-zipp/focal,focal,now 1.0.0-1 all [installed,automatic]
python3-zope.interface/focal,now 4.7.1-1 amd64 [installed,automatic]
python3.8-dev/focal-updates,focal-security,now 3.8.2-1ubuntu1.1 amd64 [installed,automatic]
python3.8-minimal/focal-updates,focal-security,now 3.8.2-1ubuntu1.1 amd64 [installed,automatic]
python3.8/focal-updates,focal-security,now 3.8.2-1ubuntu1.1 amd64 [installed,automatic]
python3/focal,now 3.8.2-0ubuntu2 amd64 [installed,automatic]