ranger / ranger

A VIM-inspired filemanager for the console
https://ranger.fm
GNU General Public License v3.0
15.57k stars 893 forks source link

Can't run ranger. Python3.9, error message: ValueError: not enough values to unpack (expected 2, got 0) #2647

Open ProgrammingLife opened 2 years ago

ProgrammingLife commented 2 years ago

Runtime Environment

Current Behavior

Can't run installed app.

Expected Behavior

Installed and working app.

Context

Just trying to install Ranger.

Possible Solutions

No solutions

Steps to reproduce

  1. git clone https://github.com/ranger/ranger.git
  2. sudo ./setup.py build
  3. sudo ./setup.py install
  4. Also tried with: sudo make install (traceback below)

Traceback

ranger version: ranger-master v1.9.3-514-gd8311106
Python version: 3.9.10 (main, Jan 15 2022, 18:56:52) [GCC 7.5.0]
Locale: en_US.UTF-8
Current file: '/home/user/apps/ranger/.github'

Traceback (most recent call last):
  File "/home/user/apps/ranger/ranger/core/main.py", line 204, in main
    fm.loop()
  File "/home/user/apps/ranger/ranger/core/fm.py", line 416, in loop
    ui.redraw()
  File "/home/user/apps/ranger/ranger/gui/ui.py", line 343, in redraw
    self.draw()
  File "/home/user/apps/ranger/ranger/gui/ui.py", line 370, in draw
    DisplayableContainer.draw(self)
  File "/home/user/apps/ranger/ranger/gui/displayable.py", line 268, in draw
    displayable.draw()
  File "/home/user/apps/ranger/ranger/gui/widgets/view_miller.py", line 100, in draw
    DisplayableContainer.draw(self)
  File "/home/user/apps/ranger/ranger/gui/displayable.py", line 268, in draw
    displayable.draw()
  File "/home/user/apps/ranger/ranger/gui/widgets/browsercolumn.py", line 186, in draw
    self._draw_directory()
  File "/home/user/apps/ranger/ranger/gui/widgets/browsercolumn.py", line 426, in _draw_directory
    for txt, color in predisplay:
ValueError: not enough values to unpack (expected 2, got 0)

ranger crashed. Please report this traceback at:
https://github.com/ranger/ranger/issues

# INSTALLING LOG:

→ sudo ./setup.py build
running build
running build_py
creating build
creating build/lib
creating build/lib/ranger
copying ranger/__init__.py -> build/lib/ranger
creating build/lib/ranger/api
copying ranger/api/commands.py -> build/lib/ranger/api
copying ranger/api/__init__.py -> build/lib/ranger/api
creating build/lib/ranger/colorschemes
copying ranger/colorschemes/default.py -> build/lib/ranger/colorschemes
copying ranger/colorschemes/solarized.py -> build/lib/ranger/colorschemes
copying ranger/colorschemes/snow.py -> build/lib/ranger/colorschemes
copying ranger/colorschemes/jungle.py -> build/lib/ranger/colorschemes
copying ranger/colorschemes/__init__.py -> build/lib/ranger/colorschemes
creating build/lib/ranger/config
copying ranger/config/commands_sample.py -> build/lib/ranger/config
copying ranger/config/commands.py -> build/lib/ranger/config
copying ranger/config/__init__.py -> build/lib/ranger/config
creating build/lib/ranger/container
copying ranger/container/bookmarks.py -> build/lib/ranger/container
copying ranger/container/history.py -> build/lib/ranger/container
copying ranger/container/__init__.py -> build/lib/ranger/container
copying ranger/container/settings.py -> build/lib/ranger/container
copying ranger/container/directory.py -> build/lib/ranger/container
copying ranger/container/fsobject.py -> build/lib/ranger/container
copying ranger/container/file.py -> build/lib/ranger/container
copying ranger/container/tags.py -> build/lib/ranger/container
creating build/lib/ranger/core
copying ranger/core/metadata.py -> build/lib/ranger/core
copying ranger/core/main.py -> build/lib/ranger/core
copying ranger/core/shared.py -> build/lib/ranger/core
copying ranger/core/filter_stack.py -> build/lib/ranger/core
copying ranger/core/fm.py -> build/lib/ranger/core
copying ranger/core/linemode.py -> build/lib/ranger/core
copying ranger/core/runner.py -> build/lib/ranger/core
copying ranger/core/loader.py -> build/lib/ranger/core
copying ranger/core/tab.py -> build/lib/ranger/core
copying ranger/core/__init__.py -> build/lib/ranger/core
copying ranger/core/actions.py -> build/lib/ranger/core
creating build/lib/ranger/ext
copying ranger/ext/widestring.py -> build/lib/ranger/ext
copying ranger/ext/iter_tools.py -> build/lib/ranger/ext
copying ranger/ext/popen_forked.py -> build/lib/ranger/ext
copying ranger/ext/logutils.py -> build/lib/ranger/ext
copying ranger/ext/spawn.py -> build/lib/ranger/ext
copying ranger/ext/accumulator.py -> build/lib/ranger/ext
copying ranger/ext/macrodict.py -> build/lib/ranger/ext
copying ranger/ext/keybinding_parser.py -> build/lib/ranger/ext
copying ranger/ext/signals.py -> build/lib/ranger/ext
copying ranger/ext/lazy_property.py -> build/lib/ranger/ext
copying ranger/ext/shell_escape.py -> build/lib/ranger/ext
copying ranger/ext/human_readable.py -> build/lib/ranger/ext
copying ranger/ext/popen23.py -> build/lib/ranger/ext
copying ranger/ext/get_executables.py -> build/lib/ranger/ext
copying ranger/ext/next_available_filename.py -> build/lib/ranger/ext
copying ranger/ext/relative_symlink.py -> build/lib/ranger/ext
copying ranger/ext/safe_path.py -> build/lib/ranger/ext
copying ranger/ext/rifle.py -> build/lib/ranger/ext
copying ranger/ext/curses_interrupt_handler.py -> build/lib/ranger/ext
copying ranger/ext/__init__.py -> build/lib/ranger/ext
copying ranger/ext/mount_path.py -> build/lib/ranger/ext
copying ranger/ext/hash.py -> build/lib/ranger/ext
copying ranger/ext/direction.py -> build/lib/ranger/ext
copying ranger/ext/shutil_generatorized.py -> build/lib/ranger/ext
copying ranger/ext/img_display.py -> build/lib/ranger/ext
copying ranger/ext/cached_function.py -> build/lib/ranger/ext
copying ranger/ext/openstruct.py -> build/lib/ranger/ext
creating build/lib/ranger/ext/vcs
copying ranger/ext/vcs/hg.py -> build/lib/ranger/ext/vcs
copying ranger/ext/vcs/git.py -> build/lib/ranger/ext/vcs
copying ranger/ext/vcs/svn.py -> build/lib/ranger/ext/vcs
copying ranger/ext/vcs/__init__.py -> build/lib/ranger/ext/vcs
copying ranger/ext/vcs/bzr.py -> build/lib/ranger/ext/vcs
copying ranger/ext/vcsvcs.py -> build/lib/ranger/ext/vcs
creating build/lib/ranger/gui
copying ranger/gui/curses_shortcuts.py -> build/lib/ranger/gui
copying ranger/gui/mouse_event.py -> build/lib/ranger/gui
copying ranger/gui/ui.py -> build/lib/ranger/gui
copying ranger/gui/color.py -> build/lib/ranger/gui
copying ranger/gui/__init__.py -> build/lib/ranger/gui
copying ranger/gui/ansi.py -> build/lib/ranger/gui
copying ranger/gui/colorscheme.py -> build/lib/ranger/gui
copying ranger/gui/bar.py -> build/lib/ranger/gui
copying ranger/gui/displayable.py -> build/lib/ranger/gui
copying ranger/gui/context.py -> build/lib/ranger/gui
creating build/lib/ranger/gui/widgets
copying ranger/gui/widgets/browsercolumn.py -> build/lib/ranger/gui/widgets
copying ranger/gui/widgets/console.py -> build/lib/ranger/gui/widgets
copying ranger/gui/widgets/view_miller.py -> build/lib/ranger/gui/widgets
copying ranger/gui/widgets/statusbar.py -> build/lib/ranger/gui/widgets
copying ranger/gui/widgets/titlebar.py -> build/lib/ranger/gui/widgets
copying ranger/gui/widgets/pager.py -> build/lib/ranger/gui/widgets
copying ranger/gui/widgets/__init__.py -> build/lib/ranger/gui/widgets
copying ranger/gui/widgets/taskview.py -> build/lib/ranger/gui/widgets
copying ranger/gui/widgets/view_multipane.py -> build/lib/ranger/gui/widgets
copying ranger/gui/widgets/view_base.py -> build/lib/ranger/gui/widgets
creating build/lib/ranger/data
copying ranger/data/mime.types -> build/lib/ranger/data
copying ranger/data/scope.sh -> build/lib/ranger/data
copying ranger/config/rc.conf -> build/lib/ranger/config
copying ranger/config/rifle.conf -> build/lib/ranger/config
running build_scripts
creating build/scripts-3.9
copying and adjusting build_scripts/ranger -> build/scripts-3.9
copying and adjusting build_scripts/rifle -> build/scripts-3.9
changing mode of build/scripts-3.9/ranger from 644 to 755
changing mode of build/scripts-3.9/rifle from 644 to 755

→ sudo ./setup.py install
running install
/home/denis/.local/lib/python3.9/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
  warnings.warn(
/home/denis/.local/lib/python3.9/site-packages/setuptools/command/easy_install.py:160: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools.
  warnings.warn(
running bdist_egg
running egg_info
writing ranger_fm.egg-info/PKG-INFO
writing dependency_links to ranger_fm.egg-info/dependency_links.txt
writing top-level names to ranger_fm.egg-info/top_level.txt
reading manifest file 'ranger_fm.egg-info/SOURCES.txt'
adding license file 'LICENSE'
adding license file 'AUTHORS'
writing manifest file 'ranger_fm.egg-info/SOURCES.txt'
installing library code to build/bdist.linux-x86_64/egg
running install_lib
running build_py
creating build/bdist.linux-x86_64
creating build/bdist.linux-x86_64/egg
creating build/bdist.linux-x86_64/egg/ranger
creating build/bdist.linux-x86_64/egg/ranger/data
copying build/lib/ranger/data/mime.types -> build/bdist.linux-x86_64/egg/ranger/data
copying build/lib/ranger/data/scope.sh -> build/bdist.linux-x86_64/egg/ranger/data
creating build/bdist.linux-x86_64/egg/ranger/container
copying build/lib/ranger/container/bookmarks.py -> build/bdist.linux-x86_64/egg/ranger/container
copying build/lib/ranger/container/history.py -> build/bdist.linux-x86_64/egg/ranger/container
copying build/lib/ranger/container/__init__.py -> build/bdist.linux-x86_64/egg/ranger/container
copying build/lib/ranger/container/settings.py -> build/bdist.linux-x86_64/egg/ranger/container
copying build/lib/ranger/container/directory.py -> build/bdist.linux-x86_64/egg/ranger/container
copying build/lib/ranger/container/fsobject.py -> build/bdist.linux-x86_64/egg/ranger/container
copying build/lib/ranger/container/file.py -> build/bdist.linux-x86_64/egg/ranger/container
copying build/lib/ranger/container/tags.py -> build/bdist.linux-x86_64/egg/ranger/container
creating build/bdist.linux-x86_64/egg/ranger/config
copying build/lib/ranger/config/commands_sample.py -> build/bdist.linux-x86_64/egg/ranger/config
copying build/lib/ranger/config/commands.py -> build/bdist.linux-x86_64/egg/ranger/config
copying build/lib/ranger/config/rifle.conf -> build/bdist.linux-x86_64/egg/ranger/config
copying build/lib/ranger/config/__init__.py -> build/bdist.linux-x86_64/egg/ranger/config
copying build/lib/ranger/config/rc.conf -> build/bdist.linux-x86_64/egg/ranger/config
creating build/bdist.linux-x86_64/egg/ranger/ext
copying build/lib/ranger/ext/widestring.py -> build/bdist.linux-x86_64/egg/ranger/ext
copying build/lib/ranger/ext/iter_tools.py -> build/bdist.linux-x86_64/egg/ranger/ext
copying build/lib/ranger/ext/popen_forked.py -> build/bdist.linux-x86_64/egg/ranger/ext
copying build/lib/ranger/ext/logutils.py -> build/bdist.linux-x86_64/egg/ranger/ext
copying build/lib/ranger/ext/spawn.py -> build/bdist.linux-x86_64/egg/ranger/ext
copying build/lib/ranger/ext/accumulator.py -> build/bdist.linux-x86_64/egg/ranger/ext
creating build/bdist.linux-x86_64/egg/ranger/ext/vcs
copying build/lib/ranger/ext/vcs/hg.py -> build/bdist.linux-x86_64/egg/ranger/ext/vcs
copying build/lib/ranger/ext/vcs/git.py -> build/bdist.linux-x86_64/egg/ranger/ext/vcs
copying build/lib/ranger/ext/vcs/svn.py -> build/bdist.linux-x86_64/egg/ranger/ext/vcs
copying build/lib/ranger/ext/vcs/__init__.py -> build/bdist.linux-x86_64/egg/ranger/ext/vcs
copying build/lib/ranger/ext/vcs/bzr.py -> build/bdist.linux-x86_64/egg/ranger/ext/vcs
copying build/lib/ranger/ext/vcs/vcs.py -> build/bdist.linux-x86_64/egg/ranger/ext/vcs
copying build/lib/ranger/ext/macrodict.py -> build/bdist.linux-x86_64/egg/ranger/ext
copying build/lib/ranger/ext/keybinding_parser.py -> build/bdist.linux-x86_64/egg/ranger/ext
copying build/lib/ranger/ext/signals.py -> build/bdist.linux-x86_64/egg/ranger/ext
copying build/lib/ranger/ext/lazy_property.py -> build/bdist.linux-x86_64/egg/ranger/ext
copying build/lib/ranger/ext/shell_escape.py -> build/bdist.linux-x86_64/egg/ranger/ext
copying build/lib/ranger/ext/human_readable.py -> build/bdist.linux-x86_64/egg/ranger/ext
copying build/lib/ranger/ext/popen23.py -> build/bdist.linux-x86_64/egg/ranger/ext
copying build/lib/ranger/ext/get_executables.py -> build/bdist.linux-x86_64/egg/ranger/ext
copying build/lib/ranger/ext/next_available_filename.py -> build/bdist.linux-x86_64/egg/ranger/ext
copying build/lib/ranger/ext/relative_symlink.py -> build/bdist.linux-x86_64/egg/ranger/ext
copying build/lib/ranger/ext/safe_path.py -> build/bdist.linux-x86_64/egg/ranger/ext
copying build/lib/ranger/ext/rifle.py -> build/bdist.linux-x86_64/egg/ranger/ext
copying build/lib/ranger/ext/curses_interrupt_handler.py -> build/bdist.linux-x86_64/egg/ranger/ext
copying build/lib/ranger/ext/__init__.py -> build/bdist.linux-x86_64/egg/ranger/ext
copying build/lib/ranger/ext/mount_path.py -> build/bdist.linux-x86_64/egg/ranger/ext
copying build/lib/ranger/ext/hash.py -> build/bdist.linux-x86_64/egg/ranger/ext
copying build/lib/ranger/ext/direction.py -> build/bdist.linux-x86_64/egg/ranger/ext
copying build/lib/ranger/ext/shutil_generatorized.py -> build/bdist.linux-x86_64/egg/ranger/ext
copying build/lib/ranger/ext/img_display.py -> build/bdist.linux-x86_64/egg/ranger/ext
copying build/lib/ranger/ext/cached_function.py -> build/bdist.linux-x86_64/egg/ranger/ext
copying build/lib/ranger/ext/openstruct.py -> build/bdist.linux-x86_64/egg/ranger/ext
creating build/bdist.linux-x86_64/egg/ranger/core
copying build/lib/ranger/core/metadata.py -> build/bdist.linux-x86_64/egg/ranger/core
copying build/lib/ranger/core/main.py -> build/bdist.linux-x86_64/egg/ranger/core
copying build/lib/ranger/core/shared.py -> build/bdist.linux-x86_64/egg/ranger/core
copying build/lib/ranger/core/filter_stack.py -> build/bdist.linux-x86_64/egg/ranger/core
copying build/lib/ranger/core/fm.py -> build/bdist.linux-x86_64/egg/ranger/core
copying build/lib/ranger/core/linemode.py -> build/bdist.linux-x86_64/egg/ranger/core
copying build/lib/ranger/core/runner.py -> build/bdist.linux-x86_64/egg/ranger/core
copying build/lib/ranger/core/loader.py -> build/bdist.linux-x86_64/egg/ranger/core
copying build/lib/ranger/core/tab.py -> build/bdist.linux-x86_64/egg/ranger/core
copying build/lib/ranger/core/__init__.py -> build/bdist.linux-x86_64/egg/ranger/core
copying build/lib/ranger/core/actions.py -> build/bdist.linux-x86_64/egg/ranger/core
copying build/lib/ranger/__init__.py -> build/bdist.linux-x86_64/egg/ranger
creating build/bdist.linux-x86_64/egg/ranger/gui
copying build/lib/ranger/gui/curses_shortcuts.py -> build/bdist.linux-x86_64/egg/ranger/gui
copying build/lib/ranger/gui/mouse_event.py -> build/bdist.linux-x86_64/egg/ranger/gui
copying build/lib/ranger/gui/ui.py -> build/bdist.linux-x86_64/egg/ranger/gui
creating build/bdist.linux-x86_64/egg/ranger/gui/widgets
copying build/lib/ranger/gui/widgets/browsercolumn.py -> build/bdist.linux-x86_64/egg/ranger/gui/widgets
copying build/lib/ranger/gui/widgets/console.py -> build/bdist.linux-x86_64/egg/ranger/gui/widgets
copying build/lib/ranger/gui/widgets/view_miller.py -> build/bdist.linux-x86_64/egg/ranger/gui/widgets
copying build/lib/ranger/gui/widgets/statusbar.py -> build/bdist.linux-x86_64/egg/ranger/gui/widgets
copying build/lib/ranger/gui/widgets/titlebar.py -> build/bdist.linux-x86_64/egg/ranger/gui/widgets
copying build/lib/ranger/gui/widgets/pager.py -> build/bdist.linux-x86_64/egg/ranger/gui/widgets
copying build/lib/ranger/gui/widgets/__init__.py -> build/bdist.linux-x86_64/egg/ranger/gui/widgets
copying build/lib/ranger/gui/widgets/taskview.py -> build/bdist.linux-x86_64/egg/ranger/gui/widgets
copying build/lib/ranger/gui/widgets/view_multipane.py -> build/bdist.linux-x86_64/egg/ranger/gui/widgets
copying build/lib/ranger/gui/widgets/view_base.py -> build/bdist.linux-x86_64/egg/ranger/gui/widgets
copying build/lib/ranger/gui/color.py -> build/bdist.linux-x86_64/egg/ranger/gui
copying build/lib/ranger/gui/__init__.py -> build/bdist.linux-x86_64/egg/ranger/gui
copying build/lib/ranger/gui/ansi.py -> build/bdist.linux-x86_64/egg/ranger/gui
copying build/lib/ranger/gui/colorscheme.py -> build/bdist.linux-x86_64/egg/ranger/gui
copying build/lib/ranger/gui/bar.py -> build/bdist.linux-x86_64/egg/ranger/gui
copying build/lib/ranger/gui/displayable.py -> build/bdist.linux-x86_64/egg/ranger/gui
copying build/lib/ranger/gui/context.py -> build/bdist.linux-x86_64/egg/ranger/gui
creating build/bdist.linux-x86_64/egg/ranger/colorschemes
copying build/lib/ranger/colorschemes/default.py -> build/bdist.linux-x86_64/egg/ranger/colorschemes
copying build/lib/ranger/colorschemes/solarized.py -> build/bdist.linux-x86_64/egg/ranger/colorschemes
copying build/lib/ranger/colorschemes/snow.py -> build/bdist.linux-x86_64/egg/ranger/colorschemes
copying build/lib/ranger/colorschemes/jungle.py -> build/bdist.linux-x86_64/egg/ranger/colorschemes
copying build/lib/ranger/colorschemes/__init__.py -> build/bdist.linux-x86_64/egg/ranger/colorschemes
creating build/bdist.linux-x86_64/egg/ranger/api
copying build/lib/ranger/api/commands.py -> build/bdist.linux-x86_64/egg/ranger/api
copying build/lib/ranger/api/__init__.py -> build/bdist.linux-x86_64/egg/ranger/api
byte-compiling build/bdist.linux-x86_64/egg/ranger/container/bookmarks.py to bookmarks.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/container/history.py to history.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/container/__init__.py to __init__.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/container/settings.py to settings.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/container/directory.py to directory.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/container/fsobject.py to fsobject.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/container/file.py to file.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/container/tags.py to tags.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/config/commands_sample.py to commands_sample.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/config/commands.py to commands.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/config/__init__.py to __init__.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/widestring.py to widestring.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/iter_tools.py to iter_tools.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/popen_forked.py to popen_forked.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/logutils.py to logutils.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/spawn.py to spawn.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/accumulator.py to accumulator.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/vcs/hg.py to hg.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/vcs/git.py to git.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/vcs/svn.py to svn.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/vcs/__init__.py to __init__.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/vcs/bzr.py to bzr.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/vcs/vcs.py to vcs.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/macrodict.py to macrodict.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/keybinding_parser.py to keybinding_parser.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/signals.py to signals.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/lazy_property.py to lazy_property.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/shell_escape.py to shell_escape.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/human_readable.py to human_readable.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/popen23.py to popen23.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/get_executables.py to get_executables.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/next_available_filename.py to next_available_filename.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/relative_symlink.py to relative_symlink.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/safe_path.py to safe_path.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/rifle.py to rifle.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/curses_interrupt_handler.py to curses_interrupt_handler.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/__init__.py to __init__.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/mount_path.py to mount_path.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/hash.py to hash.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/direction.py to direction.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/shutil_generatorized.py to shutil_generatorized.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/img_display.py to img_display.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/cached_function.py to cached_function.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/ext/openstruct.py to openstruct.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/core/metadata.py to metadata.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/core/main.py to main.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/core/shared.py to shared.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/core/filter_stack.py to filter_stack.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/core/fm.py to fm.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/core/linemode.py to linemode.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/core/runner.py to runner.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/core/loader.py to loader.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/core/tab.py to tab.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/core/__init__.py to __init__.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/core/actions.py to actions.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/__init__.py to __init__.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/gui/curses_shortcuts.py to curses_shortcuts.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/gui/mouse_event.py to mouse_event.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/gui/ui.py to ui.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/gui/widgets/browsercolumn.py to browsercolumn.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/gui/widgets/console.py to console.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/gui/widgets/view_miller.py to view_miller.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/gui/widgets/statusbar.py to statusbar.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/gui/widgets/titlebar.py to titlebar.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/gui/widgets/pager.py to pager.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/gui/widgets/__init__.py to __init__.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/gui/widgets/taskview.py to taskview.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/gui/widgets/view_multipane.py to view_multipane.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/gui/widgets/view_base.py to view_base.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/gui/color.py to color.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/gui/__init__.py to __init__.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/gui/ansi.py to ansi.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/gui/colorscheme.py to colorscheme.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/gui/bar.py to bar.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/gui/displayable.py to displayable.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/gui/context.py to context.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/colorschemes/default.py to default.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/colorschemes/solarized.py to solarized.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/colorschemes/snow.py to snow.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/colorschemes/jungle.py to jungle.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/colorschemes/__init__.py to __init__.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/api/commands.py to commands.cpython-39.pyc
byte-compiling build/bdist.linux-x86_64/egg/ranger/api/__init__.py to __init__.cpython-39.pyc
changing mode of build/bdist.linux-x86_64/egg/ranger/data/scope.sh to 775
installing package data to build/bdist.linux-x86_64/egg
running install_data
creating build/bdist.linux-x86_64/egg/share
creating build/bdist.linux-x86_64/egg/share/applications
copying doc/ranger.desktop -> build/bdist.linux-x86_64/egg/share/applications
creating build/bdist.linux-x86_64/egg/share/man
creating build/bdist.linux-x86_64/egg/share/man/man1
copying doc/ranger.1 -> build/bdist.linux-x86_64/egg/share/man/man1
copying doc/rifle.1 -> build/bdist.linux-x86_64/egg/share/man/man1
creating build/bdist.linux-x86_64/egg/share/doc
creating build/bdist.linux-x86_64/egg/share/doc/ranger
copying doc/colorschemes.md -> build/bdist.linux-x86_64/egg/share/doc/ranger
copying CHANGELOG.md -> build/bdist.linux-x86_64/egg/share/doc/ranger
copying HACKING.md -> build/bdist.linux-x86_64/egg/share/doc/ranger
copying README.md -> build/bdist.linux-x86_64/egg/share/doc/ranger
creating build/bdist.linux-x86_64/egg/share/doc/ranger/config
copying doc/config/commands.py -> build/bdist.linux-x86_64/egg/share/doc/ranger/config
copying doc/config/rifle.conf -> build/bdist.linux-x86_64/egg/share/doc/ranger/config
copying doc/config/rc.conf -> build/bdist.linux-x86_64/egg/share/doc/ranger/config
copying doc/config/scope.sh -> build/bdist.linux-x86_64/egg/share/doc/ranger/config
creating build/bdist.linux-x86_64/egg/share/doc/ranger/config/colorschemes
copying doc/config/colorschemes/default.py -> build/bdist.linux-x86_64/egg/share/doc/ranger/config/colorschemes
copying doc/config/colorschemes/snow.py -> build/bdist.linux-x86_64/egg/share/doc/ranger/config/colorschemes
copying doc/config/colorschemes/jungle.py -> build/bdist.linux-x86_64/egg/share/doc/ranger/config/colorschemes
creating build/bdist.linux-x86_64/egg/share/doc/ranger/examples
copying examples/README -> build/bdist.linux-x86_64/egg/share/doc/ranger/examples
copying examples/plugin_linemode.py -> build/bdist.linux-x86_64/egg/share/doc/ranger/examples
copying examples/plugin_chmod_keybindings.py -> build/bdist.linux-x86_64/egg/share/doc/ranger/examples
copying examples/rifle_sxiv.sh -> build/bdist.linux-x86_64/egg/share/doc/ranger/examples
copying examples/shell_automatic_cd.sh -> build/bdist.linux-x86_64/egg/share/doc/ranger/examples
copying examples/rifle_different_file_opener.conf -> build/bdist.linux-x86_64/egg/share/doc/ranger/examples
copying examples/vim_file_chooser.vim -> build/bdist.linux-x86_64/egg/share/doc/ranger/examples
copying examples/plugin_avfs.py -> build/bdist.linux-x86_64/egg/share/doc/ranger/examples
copying examples/plugin_pmount_dynamic.py -> build/bdist.linux-x86_64/egg/share/doc/ranger/examples
copying examples/plugin_hello_world.py -> build/bdist.linux-x86_64/egg/share/doc/ranger/examples
copying examples/plugin_new_sorting_method.py -> build/bdist.linux-x86_64/egg/share/doc/ranger/examples
copying examples/plugin_new_macro.py -> build/bdist.linux-x86_64/egg/share/doc/ranger/examples
copying examples/plugin_pmount.py -> build/bdist.linux-x86_64/egg/share/doc/ranger/examples
copying examples/plugin_ipc.py -> build/bdist.linux-x86_64/egg/share/doc/ranger/examples
copying examples/fish_automatic_cd.fish -> build/bdist.linux-x86_64/egg/share/doc/ranger/examples
copying examples/plugin_fasd_add.py -> build/bdist.linux-x86_64/egg/share/doc/ranger/examples
copying examples/shell_subshell_notice.sh -> build/bdist.linux-x86_64/egg/share/doc/ranger/examples
copying examples/rc_emacs.conf -> build/bdist.linux-x86_64/egg/share/doc/ranger/examples
copying examples/plugin_file_filter.py -> build/bdist.linux-x86_64/egg/share/doc/ranger/examples
creating build/bdist.linux-x86_64/egg/share/doc/ranger/tools
copying doc/tools/performance_test.py -> build/bdist.linux-x86_64/egg/share/doc/ranger/tools
copying doc/tools/print_colors.py -> build/bdist.linux-x86_64/egg/share/doc/ranger/tools
copying doc/tools/convert_papermode_to_metadata.py -> build/bdist.linux-x86_64/egg/share/doc/ranger/tools
copying doc/tools/print_keys.py -> build/bdist.linux-x86_64/egg/share/doc/ranger/tools
creating build/bdist.linux-x86_64/egg/EGG-INFO
installing scripts to build/bdist.linux-x86_64/egg/EGG-INFO/scripts
running install_scripts
running build_scripts
creating build/bdist.linux-x86_64/egg/EGG-INFO/scripts
copying build/scripts-3.9/ranger -> build/bdist.linux-x86_64/egg/EGG-INFO/scripts
copying build/scripts-3.9/rifle -> build/bdist.linux-x86_64/egg/EGG-INFO/scripts
changing mode of build/bdist.linux-x86_64/egg/EGG-INFO/scripts/ranger to 755
changing mode of build/bdist.linux-x86_64/egg/EGG-INFO/scripts/rifle to 755
copying ranger_fm.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO
copying ranger_fm.egg-info/SOURCES.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying ranger_fm.egg-info/dependency_links.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
copying ranger_fm.egg-info/top_level.txt -> build/bdist.linux-x86_64/egg/EGG-INFO
zip_safe flag not set; analyzing archive contents...
ranger.__pycache__.__init__.cpython-39: module references __file__
ranger.ext.__pycache__.rifle.cpython-39: module references __file__
ranger.ext.__pycache__.rifle.cpython-39: module references __path__
creating 'dist/ranger_fm-1.9.3-py3.9.egg' and adding 'build/bdist.linux-x86_64/egg' to it
removing 'build/bdist.linux-x86_64/egg' (and everything under it)
Processing ranger_fm-1.9.3-py3.9.egg
removing '/usr/lib/python3.9/site-packages/ranger_fm-1.9.3-py3.9.egg' (and everything under it)
creating /usr/lib/python3.9/site-packages/ranger_fm-1.9.3-py3.9.egg
Extracting ranger_fm-1.9.3-py3.9.egg to /usr/lib/python3.9/site-packages
ranger-fm 1.9.3 is already the active version in easy-install.pth
Installing ranger script to /usr/bin
Installing rifle script to /usr/bin

Installed /usr/lib/python3.9/site-packages/ranger_fm-1.9.3-py3.9.egg
Processing dependencies for ranger-fm==1.9.3
Finished processing dependencies for ranger-fm==1.9.3

→ sudo make install                             
/usr/bin/python3 setup.py install '--record=install_log.txt' \
    '--prefix=/usr/local' '--root=/' \
    --optimize=1
running install
/home/denis/.local/lib/python3.9/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
  warnings.warn(
running build
running build_py
running build_scripts
running install_lib
creating /usr/local/lib/python3.9/site-packages
creating /usr/local/lib/python3.9/site-packages/ranger
creating /usr/local/lib/python3.9/site-packages/ranger/data
copying build/lib/ranger/data/mime.types -> /usr/local/lib/python3.9/site-packages/ranger/data
copying build/lib/ranger/data/scope.sh -> /usr/local/lib/python3.9/site-packages/ranger/data
creating /usr/local/lib/python3.9/site-packages/ranger/container
copying build/lib/ranger/container/bookmarks.py -> /usr/local/lib/python3.9/site-packages/ranger/container
copying build/lib/ranger/container/history.py -> /usr/local/lib/python3.9/site-packages/ranger/container
copying build/lib/ranger/container/__init__.py -> /usr/local/lib/python3.9/site-packages/ranger/container
copying build/lib/ranger/container/settings.py -> /usr/local/lib/python3.9/site-packages/ranger/container
copying build/lib/ranger/container/directory.py -> /usr/local/lib/python3.9/site-packages/ranger/container
copying build/lib/ranger/container/fsobject.py -> /usr/local/lib/python3.9/site-packages/ranger/container
copying build/lib/ranger/container/file.py -> /usr/local/lib/python3.9/site-packages/ranger/container
copying build/lib/ranger/container/tags.py -> /usr/local/lib/python3.9/site-packages/ranger/container
creating /usr/local/lib/python3.9/site-packages/ranger/config
copying build/lib/ranger/config/commands_sample.py -> /usr/local/lib/python3.9/site-packages/ranger/config
copying build/lib/ranger/config/commands.py -> /usr/local/lib/python3.9/site-packages/ranger/config
copying build/lib/ranger/config/rifle.conf -> /usr/local/lib/python3.9/site-packages/ranger/config
copying build/lib/ranger/config/__init__.py -> /usr/local/lib/python3.9/site-packages/ranger/config
copying build/lib/ranger/config/rc.conf -> /usr/local/lib/python3.9/site-packages/ranger/config
creating /usr/local/lib/python3.9/site-packages/ranger/ext
copying build/lib/ranger/ext/widestring.py -> /usr/local/lib/python3.9/site-packages/ranger/ext
copying build/lib/ranger/ext/iter_tools.py -> /usr/local/lib/python3.9/site-packages/ranger/ext
copying build/lib/ranger/ext/popen_forked.py -> /usr/local/lib/python3.9/site-packages/ranger/ext
copying build/lib/ranger/ext/logutils.py -> /usr/local/lib/python3.9/site-packages/ranger/ext
copying build/lib/ranger/ext/spawn.py -> /usr/local/lib/python3.9/site-packages/ranger/ext
copying build/lib/ranger/ext/accumulator.py -> /usr/local/lib/python3.9/site-packages/ranger/ext
creating /usr/local/lib/python3.9/site-packages/ranger/ext/vcs
copying build/lib/ranger/ext/vcs/hg.py -> /usr/local/lib/python3.9/site-packages/ranger/ext/vcs
copying build/lib/ranger/ext/vcs/git.py -> /usr/local/lib/python3.9/site-packages/ranger/ext/vcs
copying build/lib/ranger/ext/vcs/svn.py -> /usr/local/lib/python3.9/site-packages/ranger/ext/vcs
copying build/lib/ranger/ext/vcs/__init__.py -> /usr/local/lib/python3.9/site-packages/ranger/ext/vcs
copying build/lib/ranger/ext/vcs/bzr.py -> /usr/local/lib/python3.9/site-packages/ranger/ext/vcs
copying build/lib/ranger/ext/vcs/vcs.py -> /usr/local/lib/python3.9/site-packages/ranger/ext/vcs
copying build/lib/ranger/ext/macrodict.py -> /usr/local/lib/python3.9/site-packages/ranger/ext
copying build/lib/ranger/ext/keybinding_parser.py -> /usr/local/lib/python3.9/site-packages/ranger/ext
copying build/lib/ranger/ext/signals.py -> /usr/local/lib/python3.9/site-packages/ranger/ext
copying build/lib/ranger/ext/lazy_property.py -> /usr/local/lib/python3.9/site-packages/ranger/ext
copying build/lib/ranger/ext/shell_escape.py -> /usr/local/lib/python3.9/site-packages/ranger/ext
copying build/lib/ranger/ext/human_readable.py -> /usr/local/lib/python3.9/site-packages/ranger/ext
copying build/lib/ranger/ext/popen23.py -> /usr/local/lib/python3.9/site-packages/ranger/ext
copying build/lib/ranger/ext/get_executables.py -> /usr/local/lib/python3.9/site-packages/ranger/ext
copying build/lib/ranger/ext/next_available_filename.py -> /usr/local/lib/python3.9/site-packages/ranger/ext
copying build/lib/ranger/ext/relative_symlink.py -> /usr/local/lib/python3.9/site-packages/ranger/ext
copying build/lib/ranger/ext/safe_path.py -> /usr/local/lib/python3.9/site-packages/ranger/ext
copying build/lib/ranger/ext/rifle.py -> /usr/local/lib/python3.9/site-packages/ranger/ext
copying build/lib/ranger/ext/curses_interrupt_handler.py -> /usr/local/lib/python3.9/site-packages/ranger/ext
copying build/lib/ranger/ext/__init__.py -> /usr/local/lib/python3.9/site-packages/ranger/ext
copying build/lib/ranger/ext/mount_path.py -> /usr/local/lib/python3.9/site-packages/ranger/ext
copying build/lib/ranger/ext/hash.py -> /usr/local/lib/python3.9/site-packages/ranger/ext
copying build/lib/ranger/ext/direction.py -> /usr/local/lib/python3.9/site-packages/ranger/ext
copying build/lib/ranger/ext/shutil_generatorized.py -> /usr/local/lib/python3.9/site-packages/ranger/ext
copying build/lib/ranger/ext/img_display.py -> /usr/local/lib/python3.9/site-packages/ranger/ext
copying build/lib/ranger/ext/cached_function.py -> /usr/local/lib/python3.9/site-packages/ranger/ext
copying build/lib/ranger/ext/openstruct.py -> /usr/local/lib/python3.9/site-packages/ranger/ext
creating /usr/local/lib/python3.9/site-packages/ranger/core
copying build/lib/ranger/core/metadata.py -> /usr/local/lib/python3.9/site-packages/ranger/core
copying build/lib/ranger/core/main.py -> /usr/local/lib/python3.9/site-packages/ranger/core
copying build/lib/ranger/core/shared.py -> /usr/local/lib/python3.9/site-packages/ranger/core
copying build/lib/ranger/core/filter_stack.py -> /usr/local/lib/python3.9/site-packages/ranger/core
copying build/lib/ranger/core/fm.py -> /usr/local/lib/python3.9/site-packages/ranger/core
copying build/lib/ranger/core/linemode.py -> /usr/local/lib/python3.9/site-packages/ranger/core
copying build/lib/ranger/core/runner.py -> /usr/local/lib/python3.9/site-packages/ranger/core
copying build/lib/ranger/core/loader.py -> /usr/local/lib/python3.9/site-packages/ranger/core
copying build/lib/ranger/core/tab.py -> /usr/local/lib/python3.9/site-packages/ranger/core
copying build/lib/ranger/core/__init__.py -> /usr/local/lib/python3.9/site-packages/ranger/core
copying build/lib/ranger/core/actions.py -> /usr/local/lib/python3.9/site-packages/ranger/core
copying build/lib/ranger/__init__.py -> /usr/local/lib/python3.9/site-packages/ranger
creating /usr/local/lib/python3.9/site-packages/ranger/gui
copying build/lib/ranger/gui/curses_shortcuts.py -> /usr/local/lib/python3.9/site-packages/ranger/gui
copying build/lib/ranger/gui/mouse_event.py -> /usr/local/lib/python3.9/site-packages/ranger/gui
copying build/lib/ranger/gui/ui.py -> /usr/local/lib/python3.9/site-packages/ranger/gui
creating /usr/local/lib/python3.9/site-packages/ranger/gui/widgets
copying build/lib/ranger/gui/widgets/browsercolumn.py -> /usr/local/lib/python3.9/site-packages/ranger/gui/widgets
copying build/lib/ranger/gui/widgets/console.py -> /usr/local/lib/python3.9/site-packages/ranger/gui/widgets
copying build/lib/ranger/gui/widgets/view_miller.py -> /usr/local/lib/python3.9/site-packages/ranger/gui/widgets
copying build/lib/ranger/gui/widgets/statusbar.py -> /usr/local/lib/python3.9/site-packages/ranger/gui/widgets
copying build/lib/ranger/gui/widgets/titlebar.py -> /usr/local/lib/python3.9/site-packages/ranger/gui/widgets
copying build/lib/ranger/gui/widgets/pager.py -> /usr/local/lib/python3.9/site-packages/ranger/gui/widgets
copying build/lib/ranger/gui/widgets/__init__.py -> /usr/local/lib/python3.9/site-packages/ranger/gui/widgets
copying build/lib/ranger/gui/widgets/taskview.py -> /usr/local/lib/python3.9/site-packages/ranger/gui/widgets
copying build/lib/ranger/gui/widgets/view_multipane.py -> /usr/local/lib/python3.9/site-packages/ranger/gui/widgets
copying build/lib/ranger/gui/widgets/view_base.py -> /usr/local/lib/python3.9/site-packages/ranger/gui/widgets
copying build/lib/ranger/gui/color.py -> /usr/local/lib/python3.9/site-packages/ranger/gui
copying build/lib/ranger/gui/__init__.py -> /usr/local/lib/python3.9/site-packages/ranger/gui
copying build/lib/ranger/gui/ansi.py -> /usr/local/lib/python3.9/site-packages/ranger/gui
copying build/lib/ranger/gui/colorscheme.py -> /usr/local/lib/python3.9/site-packages/ranger/gui
copying build/lib/ranger/gui/bar.py -> /usr/local/lib/python3.9/site-packages/ranger/gui
copying build/lib/ranger/gui/displayable.py -> /usr/local/lib/python3.9/site-packages/ranger/gui
copying build/lib/ranger/gui/context.py -> /usr/local/lib/python3.9/site-packages/ranger/gui
creating /usr/local/lib/python3.9/site-packages/ranger/colorschemes
copying build/lib/ranger/colorschemes/default.py -> /usr/local/lib/python3.9/site-packages/ranger/colorschemes
copying build/lib/ranger/colorschemes/solarized.py -> /usr/local/lib/python3.9/site-packages/ranger/colorschemes
copying build/lib/ranger/colorschemes/snow.py -> /usr/local/lib/python3.9/site-packages/ranger/colorschemes
copying build/lib/ranger/colorschemes/jungle.py -> /usr/local/lib/python3.9/site-packages/ranger/colorschemes
copying build/lib/ranger/colorschemes/__init__.py -> /usr/local/lib/python3.9/site-packages/ranger/colorschemes
creating /usr/local/lib/python3.9/site-packages/ranger/api
copying build/lib/ranger/api/commands.py -> /usr/local/lib/python3.9/site-packages/ranger/api
copying build/lib/ranger/api/__init__.py -> /usr/local/lib/python3.9/site-packages/ranger/api
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/container/bookmarks.py to bookmarks.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/container/history.py to history.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/container/__init__.py to __init__.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/container/settings.py to settings.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/container/directory.py to directory.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/container/fsobject.py to fsobject.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/container/file.py to file.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/container/tags.py to tags.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/config/commands_sample.py to commands_sample.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/config/commands.py to commands.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/config/__init__.py to __init__.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/widestring.py to widestring.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/iter_tools.py to iter_tools.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/popen_forked.py to popen_forked.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/logutils.py to logutils.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/spawn.py to spawn.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/accumulator.py to accumulator.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/vcs/hg.py to hg.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/vcs/git.py to git.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/vcs/svn.py to svn.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/vcs/__init__.py to __init__.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/vcs/bzr.py to bzr.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/vcs/vcs.py to vcs.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/macrodict.py to macrodict.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/keybinding_parser.py to keybinding_parser.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/signals.py to signals.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/lazy_property.py to lazy_property.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/shell_escape.py to shell_escape.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/human_readable.py to human_readable.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/popen23.py to popen23.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/get_executables.py to get_executables.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/next_available_filename.py to next_available_filename.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/relative_symlink.py to relative_symlink.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/safe_path.py to safe_path.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/rifle.py to rifle.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/curses_interrupt_handler.py to curses_interrupt_handler.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/__init__.py to __init__.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/mount_path.py to mount_path.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/hash.py to hash.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/direction.py to direction.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/shutil_generatorized.py to shutil_generatorized.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/img_display.py to img_display.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/cached_function.py to cached_function.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/ext/openstruct.py to openstruct.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/core/metadata.py to metadata.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/core/main.py to main.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/core/shared.py to shared.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/core/filter_stack.py to filter_stack.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/core/fm.py to fm.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/core/linemode.py to linemode.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/core/runner.py to runner.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/core/loader.py to loader.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/core/tab.py to tab.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/core/__init__.py to __init__.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/core/actions.py to actions.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/__init__.py to __init__.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/gui/curses_shortcuts.py to curses_shortcuts.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/gui/mouse_event.py to mouse_event.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/gui/ui.py to ui.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/gui/widgets/browsercolumn.py to browsercolumn.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/gui/widgets/console.py to console.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/gui/widgets/view_miller.py to view_miller.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/gui/widgets/statusbar.py to statusbar.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/gui/widgets/titlebar.py to titlebar.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/gui/widgets/pager.py to pager.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/gui/widgets/__init__.py to __init__.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/gui/widgets/taskview.py to taskview.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/gui/widgets/view_multipane.py to view_multipane.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/gui/widgets/view_base.py to view_base.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/gui/color.py to color.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/gui/__init__.py to __init__.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/gui/ansi.py to ansi.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/gui/colorscheme.py to colorscheme.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/gui/bar.py to bar.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/gui/displayable.py to displayable.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/gui/context.py to context.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/colorschemes/default.py to default.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/colorschemes/solarized.py to solarized.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/colorschemes/snow.py to snow.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/colorschemes/jungle.py to jungle.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/colorschemes/__init__.py to __init__.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/api/commands.py to commands.cpython-39.pyc
byte-compiling /usr/local/lib/python3.9/site-packages/ranger/api/__init__.py to __init__.cpython-39.pyc
writing byte-compilation script '/tmp/tmp_i5iijp1.py'
/usr/bin/python3 /tmp/tmp_i5iijp1.py
removing /tmp/tmp_i5iijp1.py
changing mode of /usr/local/lib/python3.9/site-packages/ranger/data/scope.sh to 775
running install_data
running install_egg_info
running egg_info
writing ranger_fm.egg-info/PKG-INFO
writing dependency_links to ranger_fm.egg-info/dependency_links.txt
writing top-level names to ranger_fm.egg-info/top_level.txt
reading manifest file 'ranger_fm.egg-info/SOURCES.txt'
adding license file 'LICENSE'
adding license file 'AUTHORS'
writing manifest file 'ranger_fm.egg-info/SOURCES.txt'
Copying ranger_fm.egg-info to /usr/local/lib/python3.9/site-packages/ranger_fm-1.9.3-py3.9.egg-info
running install_scripts
changing mode of /usr/local/bin/ranger to 755
changing mode of /usr/local/bin/rifle to 755
writing list of installed files to 'install_log.txt'

What's wrong with my installation? What can I try to do to solve it?

jmcantrell commented 2 years ago

This should be fixed by #2648