TritonDataCenter / pkgsrc

NetBSD/pkgsrc fork for our binary package repositories
https://pkgsrc.smartos.org/
132 stars 51 forks source link

python pip installed packages needing wheels fail to build with sysconfig errors #323

Open numericillustration opened 2 years ago

numericillustration commented 2 years ago

Python is unable to find the appropriate sysconfig data info for both Mac and Smartos systems during pip installs. For comparison it works on both the Debian distribution of py3 and the python org downloads for Mac. Output from both is included here:

on MacOS I first came across this in virtualenv installs in both py 3.7 and 3.9 3.7

~/gits/joyent/ops-sop 🂁 virtualenv -p python3.7 py-venv
Running virtualenv with interpreter /opt/pkg/bin/python3.7
Already using interpreter /opt/pkg/bin/python3.7
Using base prefix '/opt/pkg'
New python executable in /Users/michaelhicks/gits/joyent/ops-sop/py-venv/bin/python3.7
Not overwriting existing python script /Users/michaelhicks/gits/joyent/ops-sop/py-venv/bin/python (you must use /Users/michaelhicks/gits/joyent/ops-sop/py-venv/bin/python3.7)
Installing setuptools, pip, wheel...
done.
~/gits/joyent/ops-sop 🂁 source py-venv/bin/activate; pip install -r requirements.txt
Collecting mkdocs-material
  Using cached mkdocs_material-8.2.3-py2.py3-none-any.whl (4.8 MB)
Collecting mkdocs-mermaid2-plugin
  Using cached mkdocs_mermaid2_plugin-0.5.2-py3-none-any.whl (8.7 kB)
Collecting jinja2>=2.11.1
  Using cached Jinja2-3.0.3-py3-none-any.whl (133 kB)
Collecting markdown>=3.2
  Using cached Markdown-3.3.6-py3-none-any.whl (97 kB)
Collecting mkdocs-material-extensions>=1.0
  Using cached mkdocs_material_extensions-1.0.3-py3-none-any.whl (8.1 kB)
Collecting mkdocs>=1.2.3
  Using cached mkdocs-1.2.3-py3-none-any.whl (6.4 MB)
Collecting pygments>=2.10
  Using cached Pygments-2.11.2-py3-none-any.whl (1.1 MB)
Collecting pymdown-extensions>=9.0
  Using cached pymdown_extensions-9.2-py3-none-any.whl (216 kB)
Collecting jsbeautifier
  Using cached jsbeautifier-1.14.0.tar.gz (73 kB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... done
Collecting requests
  Using cached requests-2.27.1-py2.py3-none-any.whl (63 kB)
Collecting pyyaml
  Using cached PyYAML-6.0.tar.gz (124 kB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... error
  error: subprocess-exited-with-error

  × Getting requirements to build wheel did not run successfully.
  │ exit code: 1
  ╰─> [31 lines of output]
      Traceback (most recent call last):
        File "/private/var/folders/tf/k31dlms130n4nxcpwzs6dhr80000gn/T/pip-build-env-zfpn1aqu/overlay/lib/python3.7/site-packages/setuptools/_distutils/sysconfig.py", line 454, in _init_posix
          _temp = __import__(name, globals(), locals(), ['build_time_vars'], 0)
      ModuleNotFoundError: No module named '_sysconfigdata__darwin_darwin'

      During handling of the above exception, another exception occurred:

      Traceback (most recent call last):
        File "/Users/michaelhicks/gits/joyent/ops-sop/py-venv/lib/python3.7/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 363, in <module>
          main()
        File "/Users/michaelhicks/gits/joyent/ops-sop/py-venv/lib/python3.7/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 345, in main
          json_out['return_val'] = hook(**hook_input['kwargs'])
        File "/Users/michaelhicks/gits/joyent/ops-sop/py-venv/lib/python3.7/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 130, in get_requires_for_build_wheel
          return hook(config_settings)
        File "/private/var/folders/tf/k31dlms130n4nxcpwzs6dhr80000gn/T/pip-build-env-zfpn1aqu/overlay/lib/python3.7/site-packages/setuptools/build_meta.py", line 178, in get_requires_for_build_wheel
          config_settings, requirements=['wheel'])
        File "/private/var/folders/tf/k31dlms130n4nxcpwzs6dhr80000gn/T/pip-build-env-zfpn1aqu/overlay/lib/python3.7/site-packages/setuptools/build_meta.py", line 159, in _get_build_requires
          self.run_setup()
        File "/private/var/folders/tf/k31dlms130n4nxcpwzs6dhr80000gn/T/pip-build-env-zfpn1aqu/overlay/lib/python3.7/site-packages/setuptools/build_meta.py", line 174, in run_setup
          exec(compile(code, __file__, 'exec'), locals())
        File "setup.py", line 73, in <module>
          from setuptools.command.build_ext import build_ext as _build_ext
        File "/private/var/folders/tf/k31dlms130n4nxcpwzs6dhr80000gn/T/pip-build-env-zfpn1aqu/overlay/lib/python3.7/site-packages/setuptools/command/build_ext.py", line 24, in <module>
          get_config_var("LDSHARED")
        File "/private/var/folders/tf/k31dlms130n4nxcpwzs6dhr80000gn/T/pip-build-env-zfpn1aqu/overlay/lib/python3.7/site-packages/setuptools/_distutils/sysconfig.py", line 567, in get_config_var
          return get_config_vars().get(name)
        File "/private/var/folders/tf/k31dlms130n4nxcpwzs6dhr80000gn/T/pip-build-env-zfpn1aqu/overlay/lib/python3.7/site-packages/setuptools/_distutils/sysconfig.py", line 498, in get_config_vars
          func()
        File "/private/var/folders/tf/k31dlms130n4nxcpwzs6dhr80000gn/T/pip-build-env-zfpn1aqu/overlay/lib/python3.7/site-packages/setuptools/_distutils/sysconfig.py", line 458, in _init_posix
          '_sysconfigdata', globals(), locals(), ['build_time_vars'], 0)
      ModuleNotFoundError: No module named '_sysconfigdata'
      [end of output]

  note: This error originates from a subprocess, and is likely not a problem with pip.
error: subprocess-exited-with-error

× Getting requirements to build wheel did not run successfully.
│ exit code: 1
╰─> See above for output.

note: This error originates from a subprocess, and is likely not a problem with pip.

3.9

(py-venv) ~/gits/joyent/ops-sop 🂁 virtualenv py-venv
Using base prefix '/opt/pkg'
New python executable in /Users/michaelhicks/gits/joyent/ops-sop/py-venv/bin/python3.9
Not overwriting existing python script /Users/michaelhicks/gits/joyent/ops-sop/py-venv/bin/python (you must use /Users/michaelhicks/gits/joyent/ops-sop/py-venv/bin/python3.9)
Installing setuptools, pip, wheel...
done.
(py-venv) ~/gits/joyent/ops-sop 🂁 source py-venv/bin/activate
(py-venv) ~/gits/joyent/ops-sop 🂁 pip install -r requirements.txt
Collecting mkdocs-material
  Using cached mkdocs_material-8.2.3-py2.py3-none-any.whl (4.8 MB)
Collecting mkdocs-mermaid2-plugin
  Using cached mkdocs_mermaid2_plugin-0.5.2-py3-none-any.whl (8.7 kB)
Collecting mkdocs-material-extensions>=1.0
  Using cached mkdocs_material_extensions-1.0.3-py3-none-any.whl (8.1 kB)
Collecting markdown>=3.2
  Using cached Markdown-3.3.6-py3-none-any.whl (97 kB)
Collecting mkdocs>=1.2.3
  Using cached mkdocs-1.2.3-py3-none-any.whl (6.4 MB)
Collecting jinja2>=2.11.1
  Using cached Jinja2-3.0.3-py3-none-any.whl (133 kB)
Collecting pygments>=2.10
  Using cached Pygments-2.11.2-py3-none-any.whl (1.1 MB)
Collecting pymdown-extensions>=9.0
  Using cached pymdown_extensions-9.2-py3-none-any.whl (216 kB)
Collecting beautifulsoup4>=4.6.3
  Using cached beautifulsoup4-4.10.0-py3-none-any.whl (97 kB)
Collecting jsbeautifier
  Using cached jsbeautifier-1.14.0.tar.gz (73 kB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... done
Requirement already satisfied: setuptools>=18.5 in ./py-venv/lib/python3.9/site-packages (from mkdocs-mermaid2-plugin->-r requirements.txt (line 2)) (60.9.3)
Collecting requests
  Using cached requests-2.27.1-py2.py3-none-any.whl (63 kB)
Collecting pyyaml
  Using cached PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl (197 kB)
Collecting soupsieve>1.2
  Using cached soupsieve-2.3.1-py3-none-any.whl (37 kB)
Collecting MarkupSafe>=2.0
  Using cached MarkupSafe-2.1.0-cp39-cp39-macosx_10_9_x86_64.whl (13 kB)
Collecting importlib-metadata>=4.4
  Using cached importlib_metadata-4.11.2-py3-none-any.whl (17 kB)
Collecting mergedeep>=1.3.4
  Using cached mergedeep-1.3.4-py3-none-any.whl (6.4 kB)
Collecting pyyaml-env-tag>=0.1
  Using cached pyyaml_env_tag-0.1-py3-none-any.whl (3.9 kB)
Collecting ghp-import>=1.0
  Using cached ghp_import-2.0.2-py3-none-any.whl (11 kB)
Collecting watchdog>=2.0
  Using cached watchdog-2.1.6-cp39-cp39-macosx_10_9_x86_64.whl (85 kB)
Collecting packaging>=20.5
  Using cached packaging-21.3-py3-none-any.whl (40 kB)
Collecting click>=3.3
  Using cached click-8.0.4-py3-none-any.whl (97 kB)
Collecting six>=1.13.0
  Using cached six-1.16.0-py2.py3-none-any.whl (11 kB)
Collecting editorconfig>=0.12.2
  Using cached EditorConfig-0.12.3-py3-none-any.whl (16 kB)
Collecting urllib3<1.27,>=1.21.1
  Using cached urllib3-1.26.8-py2.py3-none-any.whl (138 kB)
Collecting idna<4,>=2.5
  Using cached idna-3.3-py3-none-any.whl (61 kB)
Collecting certifi>=2017.4.17
  Using cached certifi-2021.10.8-py2.py3-none-any.whl (149 kB)
Collecting charset-normalizer~=2.0.0
  Using cached charset_normalizer-2.0.12-py3-none-any.whl (39 kB)
Collecting python-dateutil>=2.8.1
  Using cached python_dateutil-2.8.2-py2.py3-none-any.whl (247 kB)
Collecting zipp>=0.5
  Using cached zipp-3.7.0-py3-none-any.whl (5.3 kB)
Collecting pyparsing!=3.0.5,>=2.0.2
  Using cached pyparsing-3.0.7-py3-none-any.whl (98 kB)
Building wheels for collected packages: jsbeautifier
  Building wheel for jsbeautifier (pyproject.toml) ... error
  error: subprocess-exited-with-error

  × Building wheel for jsbeautifier (pyproject.toml) did not run successfully.
  │ exit code: 1
  ╰─> [66 lines of output]
      running bdist_wheel
      Traceback (most recent call last):
        File "/private/var/folders/tf/k31dlms130n4nxcpwzs6dhr80000gn/T/pip-build-env-x8n6jwkd/overlay/lib/python3.9/site-packages/setuptools/_distutils/sysconfig.py", line 454, in _init_posix
          _temp = __import__(name, globals(), locals(), ['build_time_vars'], 0)
      ModuleNotFoundError: No module named '_sysconfigdata__darwin_darwin'

      During handling of the above exception, another exception occurred:

      Traceback (most recent call last):
        File "/Users/michaelhicks/gits/joyent/ops-sop/py-venv/lib/python3.9/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 363, in <module>
          main()
        File "/Users/michaelhicks/gits/joyent/ops-sop/py-venv/lib/python3.9/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 345, in main
          json_out['return_val'] = hook(**hook_input['kwargs'])
        File "/Users/michaelhicks/gits/joyent/ops-sop/py-venv/lib/python3.9/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 261, in build_wheel
          return _build_backend().build_wheel(wheel_directory, config_settings,
        File "/private/var/folders/tf/k31dlms130n4nxcpwzs6dhr80000gn/T/pip-build-env-x8n6jwkd/overlay/lib/python3.9/site-packages/setuptools/build_meta.py", line 244, in build_wheel
          return self._build_with_temp_dir(['bdist_wheel'], '.whl',
        File "/private/var/folders/tf/k31dlms130n4nxcpwzs6dhr80000gn/T/pip-build-env-x8n6jwkd/overlay/lib/python3.9/site-packages/setuptools/build_meta.py", line 229, in _build_with_temp_dir
          self.run_setup()
        File "/private/var/folders/tf/k31dlms130n4nxcpwzs6dhr80000gn/T/pip-build-env-x8n6jwkd/overlay/lib/python3.9/site-packages/setuptools/build_meta.py", line 281, in run_setup
          super(_BuildMetaLegacyBackend,
        File "/private/var/folders/tf/k31dlms130n4nxcpwzs6dhr80000gn/T/pip-build-env-x8n6jwkd/overlay/lib/python3.9/site-packages/setuptools/build_meta.py", line 174, in run_setup
          exec(compile(code, __file__, 'exec'), locals())
        File "setup.py", line 31, in <module>
          setup(
        File "/private/var/folders/tf/k31dlms130n4nxcpwzs6dhr80000gn/T/pip-build-env-x8n6jwkd/overlay/lib/python3.9/site-packages/setuptools/__init__.py", line 155, in setup
          return distutils.core.setup(**attrs)
        File "/private/var/folders/tf/k31dlms130n4nxcpwzs6dhr80000gn/T/pip-build-env-x8n6jwkd/overlay/lib/python3.9/site-packages/setuptools/_distutils/core.py", line 148, in setup
          return run_commands(dist)
        File "/private/var/folders/tf/k31dlms130n4nxcpwzs6dhr80000gn/T/pip-build-env-x8n6jwkd/overlay/lib/python3.9/site-packages/setuptools/_distutils/core.py", line 163, in run_commands
          dist.run_commands()
        File "/private/var/folders/tf/k31dlms130n4nxcpwzs6dhr80000gn/T/pip-build-env-x8n6jwkd/overlay/lib/python3.9/site-packages/setuptools/_distutils/dist.py", line 967, in run_commands
          self.run_command(cmd)
        File "/private/var/folders/tf/k31dlms130n4nxcpwzs6dhr80000gn/T/pip-build-env-x8n6jwkd/overlay/lib/python3.9/site-packages/setuptools/_distutils/dist.py", line 986, in run_command
          cmd_obj.run()
        File "/private/var/folders/tf/k31dlms130n4nxcpwzs6dhr80000gn/T/pip-build-env-x8n6jwkd/overlay/lib/python3.9/site-packages/wheel/bdist_wheel.py", line 295, in run
          build_ext = self.reinitialize_command('build_ext')
        File "/private/var/folders/tf/k31dlms130n4nxcpwzs6dhr80000gn/T/pip-build-env-x8n6jwkd/overlay/lib/python3.9/site-packages/setuptools/__init__.py", line 210, in reinitialize_command
          cmd = _Command.reinitialize_command(self, command, reinit_subcommands)
        File "/private/var/folders/tf/k31dlms130n4nxcpwzs6dhr80000gn/T/pip-build-env-x8n6jwkd/overlay/lib/python3.9/site-packages/setuptools/_distutils/cmd.py", line 305, in reinitialize_command
          return self.distribution.reinitialize_command(command,
        File "/private/var/folders/tf/k31dlms130n4nxcpwzs6dhr80000gn/T/pip-build-env-x8n6jwkd/overlay/lib/python3.9/site-packages/setuptools/_distutils/dist.py", line 939, in reinitialize_command
          command = self.get_command_obj(command_name)
        File "/private/var/folders/tf/k31dlms130n4nxcpwzs6dhr80000gn/T/pip-build-env-x8n6jwkd/overlay/lib/python3.9/site-packages/setuptools/_distutils/dist.py", line 858, in get_command_obj
          klass = self.get_command_class(command)
        File "/private/var/folders/tf/k31dlms130n4nxcpwzs6dhr80000gn/T/pip-build-env-x8n6jwkd/overlay/lib/python3.9/site-packages/setuptools/dist.py", line 931, in get_command_class
          self.cmdclass[command] = cmdclass = ep.load()
        File "/private/var/folders/tf/k31dlms130n4nxcpwzs6dhr80000gn/T/pip-build-env-x8n6jwkd/overlay/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/__init__.py", line 194, in load
          module = import_module(match.group('module'))
        File "/Users/michaelhicks/gits/joyent/ops-sop/py-venv/lib/python3.9/importlib/__init__.py", line 127, in import_module
          return _bootstrap._gcd_import(name[level:], package, level)
        File "<frozen importlib._bootstrap>", line 1030, in _gcd_import
        File "<frozen importlib._bootstrap>", line 1007, in _find_and_load
        File "<frozen importlib._bootstrap>", line 986, in _find_and_load_unlocked
        File "<frozen importlib._bootstrap>", line 680, in _load_unlocked
        File "<frozen importlib._bootstrap_external>", line 850, in exec_module
        File "<frozen importlib._bootstrap>", line 228, in _call_with_frames_removed
        File "/private/var/folders/tf/k31dlms130n4nxcpwzs6dhr80000gn/T/pip-build-env-x8n6jwkd/overlay/lib/python3.9/site-packages/setuptools/command/build_ext.py", line 24, in <module>
          get_config_var("LDSHARED")
        File "/private/var/folders/tf/k31dlms130n4nxcpwzs6dhr80000gn/T/pip-build-env-x8n6jwkd/overlay/lib/python3.9/site-packages/setuptools/_distutils/sysconfig.py", line 567, in get_config_var
          return get_config_vars().get(name)
        File "/private/var/folders/tf/k31dlms130n4nxcpwzs6dhr80000gn/T/pip-build-env-x8n6jwkd/overlay/lib/python3.9/site-packages/setuptools/_distutils/sysconfig.py", line 498, in get_config_vars
          func()
        File "/private/var/folders/tf/k31dlms130n4nxcpwzs6dhr80000gn/T/pip-build-env-x8n6jwkd/overlay/lib/python3.9/site-packages/setuptools/_distutils/sysconfig.py", line 457, in _init_posix
          _temp = __import__(
      ModuleNotFoundError: No module named '_sysconfigdata'
      [end of output]

  note: This error originates from a subprocess, and is likely not a problem with pip.
  ERROR: Failed building wheel for jsbeautifier
Failed to build jsbeautifier
ERROR: Could not build wheels for jsbeautifier, which is required to install pyproject.toml-based projects

But it also failed for me in global installs.

I also tried on SmartOS:

[root@jonny5isaliveerer ~]# python --version
Python 3.9.9
[root@jonny5isaliveerer ~]# pkgin install py39-pip
calculating dependencies...done.

4 packages to install:
  py39-pip-21.3.1 py39-setuptools-59.6.0 py39-expat-3.9.9 expat-2.4.1

0 to refresh, 0 to upgrade, 4 to install
5411K to download, 19M to install

proceed ? [Y/n] y
...
processing local summary...
marking py39-pip-21.3.1 as non auto-removable
[root@jonny5isaliveerer ~]# pip
pip     pip3    pip3.9
[root@jonny5isaliveerer ~]# pip
pip     pip3    pip3.9
[root@jonny5isaliveerer ~]# pip install mkdocs-mermaid2-plugin
Collecting mkdocs-mermaid2-plugin
  Downloading mkdocs_mermaid2_plugin-0.5.2-py3-none-any.whl (8.7 kB)
Requirement already satisfied: setuptools>=18.5 in /opt/local/lib/python3.9/site-packages (from mkdocs-mermaid2-plugin) (59.6.0)
Collecting jsbeautifier
  Downloading jsbeautifier-1.14.0.tar.gz (73 kB)
     |████████████████████████████████| 73 kB 4.3 MB/s
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... done
Collecting requests
  Downloading requests-2.27.1-py2.py3-none-any.whl (63 kB)
     |████████████████████████████████| 63 kB 6.8 MB/s
Collecting pymdown-extensions>=8.0
  Downloading pymdown_extensions-9.2-py3-none-any.whl (216 kB)
     |████████████████████████████████| 216 kB 72.9 MB/s
Collecting mkdocs>=1.0.4
  Downloading mkdocs-1.2.3-py3-none-any.whl (6.4 MB)
     |████████████████████████████████| 6.4 MB 82.5 MB/s
Collecting beautifulsoup4>=4.6.3
  Downloading beautifulsoup4-4.10.0-py3-none-any.whl (97 kB)
     |████████████████████████████████| 97 kB 15.8 MB/s
Collecting pyyaml
  Downloading PyYAML-6.0.tar.gz (124 kB)
     |████████████████████████████████| 124 kB 81.6 MB/s
  Installing build dependencies ... done
  Getting requirements to build wheel ... error
  ERROR: Command errored out with exit status 1:
   command: /opt/local/bin/python3.9 /opt/local/lib/python3.9/site-packages/pip/_vendor/pep517/in_process/_in_process.py get_requires_for_build_wheel /tmp/tmpz08j0lpa
       cwd: /tmp/pip-install-f07_2s9m/pyyaml_11e9142b451049a5ab251612caac7018
  Complete output (31 lines):
  Traceback (most recent call last):
    File "/tmp/pip-build-env-9qu7yz1x/overlay/lib/python3.9/site-packages/setuptools/_distutils/sysconfig.py", line 454, in _init_posix
      _temp = __import__(name, globals(), locals(), ['build_time_vars'], 0)
  ModuleNotFoundError: No module named '_sysconfigdata__sunos5_'

  During handling of the above exception, another exception occurred:

  Traceback (most recent call last):
    File "/opt/local/lib/python3.9/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 363, in <module>
      main()
    File "/opt/local/lib/python3.9/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 345, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "/opt/local/lib/python3.9/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 130, in get_requires_for_build_wheel
      return hook(config_settings)
    File "/tmp/pip-build-env-9qu7yz1x/overlay/lib/python3.9/site-packages/setuptools/build_meta.py", line 177, in get_requires_for_build_wheel
      return self._get_build_requires(
    File "/tmp/pip-build-env-9qu7yz1x/overlay/lib/python3.9/site-packages/setuptools/build_meta.py", line 159, in _get_build_requires
      self.run_setup()
    File "/tmp/pip-build-env-9qu7yz1x/overlay/lib/python3.9/site-packages/setuptools/build_meta.py", line 174, in run_setup
      exec(compile(code, __file__, 'exec'), locals())
    File "setup.py", line 73, in <module>
      from setuptools.command.build_ext import build_ext as _build_ext
    File "/tmp/pip-build-env-9qu7yz1x/overlay/lib/python3.9/site-packages/setuptools/command/build_ext.py", line 24, in <module>
      get_config_var("LDSHARED")
    File "/tmp/pip-build-env-9qu7yz1x/overlay/lib/python3.9/site-packages/setuptools/_distutils/sysconfig.py", line 567, in get_config_var
      return get_config_vars().get(name)
    File "/tmp/pip-build-env-9qu7yz1x/overlay/lib/python3.9/site-packages/setuptools/_distutils/sysconfig.py", line 498, in get_config_vars
      func()
    File "/tmp/pip-build-env-9qu7yz1x/overlay/lib/python3.9/site-packages/setuptools/_distutils/sysconfig.py", line 457, in _init_posix
      _temp = __import__(
  ModuleNotFoundError: No module named '_sysconfigdata'
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/36/2b/61d51a2c4f25ef062ae3f74576b01638bebad5e045f747ff12643df63844/PyYAML-6.0.tar.gz#sha256=68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2 (from https://pypi.org/simple/pyyaml/) (requires-python:>=3.6). Command errored out with exit status 1: /opt/local/bin/python3.9 /opt/local/lib/python3.9/site-packages/pip/_vendor/pep517/in_process/_in_process.py get_requires_for_build_wheel /tmp/tmpz08j0lpa Check the logs for full command output.
  Downloading PyYAML-5.4.1.tar.gz (175 kB)
     |████████████████████████████████| 175 kB 32.5 MB/s
  Installing build dependencies ... done
  Getting requirements to build wheel ... error
  ERROR: Command errored out with exit status 1:
   command: /opt/local/bin/python3.9 /opt/local/lib/python3.9/site-packages/pip/_vendor/pep517/in_process/_in_process.py get_requires_for_build_wheel /tmp/tmp2any00gz
       cwd: /tmp/pip-install-f07_2s9m/pyyaml_ed7a26b3babc4f70b80a236b8dc5dfa5
  Complete output (31 lines):
  Traceback (most recent call last):
    File "/tmp/pip-build-env-5uw7nc1c/overlay/lib/python3.9/site-packages/setuptools/_distutils/sysconfig.py", line 454, in _init_posix
      _temp = __import__(name, globals(), locals(), ['build_time_vars'], 0)
  ModuleNotFoundError: No module named '_sysconfigdata__sunos5_'

  During handling of the above exception, another exception occurred:

  Traceback (most recent call last):
    File "/opt/local/lib/python3.9/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 363, in <module>
      main()
    File "/opt/local/lib/python3.9/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 345, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "/opt/local/lib/python3.9/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 130, in get_requires_for_build_wheel
      return hook(config_settings)
    File "/tmp/pip-build-env-5uw7nc1c/overlay/lib/python3.9/site-packages/setuptools/build_meta.py", line 177, in get_requires_for_build_wheel
      return self._get_build_requires(
    File "/tmp/pip-build-env-5uw7nc1c/overlay/lib/python3.9/site-packages/setuptools/build_meta.py", line 159, in _get_build_requires
      self.run_setup()
    File "/tmp/pip-build-env-5uw7nc1c/overlay/lib/python3.9/site-packages/setuptools/build_meta.py", line 174, in run_setup
      exec(compile(code, __file__, 'exec'), locals())
    File "setup.py", line 72, in <module>
      from setuptools.command.build_ext import build_ext as _build_ext
    File "/tmp/pip-build-env-5uw7nc1c/overlay/lib/python3.9/site-packages/setuptools/command/build_ext.py", line 24, in <module>
      get_config_var("LDSHARED")
    File "/tmp/pip-build-env-5uw7nc1c/overlay/lib/python3.9/site-packages/setuptools/_distutils/sysconfig.py", line 567, in get_config_var
      return get_config_vars().get(name)
    File "/tmp/pip-build-env-5uw7nc1c/overlay/lib/python3.9/site-packages/setuptools/_distutils/sysconfig.py", line 498, in get_config_vars
      func()
    File "/tmp/pip-build-env-5uw7nc1c/overlay/lib/python3.9/site-packages/setuptools/_distutils/sysconfig.py", line 457, in _init_posix
      _temp = __import__(
  ModuleNotFoundError: No module named '_sysconfigdata'
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/a0/a4/d63f2d7597e1a4b55aa3b4d6c5b029991d3b824b5bd331af8d4ab1ed687d/PyYAML-5.4.1.tar.gz#sha256=607774cbba28732bfa802b54baa7484215f530991055bb562efbed5b2f20a45e (from https://pypi.org/simple/pyyaml/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*). Command errored out with exit status 1: /opt/local/bin/python3.9 /opt/local/lib/python3.9/site-packages/pip/_vendor/pep517/in_process/_in_process.py get_requires_for_build_wheel /tmp/tmp2any00gz Check the logs for full command output.
  Downloading PyYAML-5.4.tar.gz (174 kB)
     |████████████████████████████████| 174 kB 29.1 MB/s
  Installing build dependencies ... done
  Getting requirements to build wheel ... error
  ERROR: Command errored out with exit status 1:
   command: /opt/local/bin/python3.9 /opt/local/lib/python3.9/site-packages/pip/_vendor/pep517/in_process/_in_process.py get_requires_for_build_wheel /tmp/tmp954hy9nu
       cwd: /tmp/pip-install-f07_2s9m/pyyaml_9f18d514b3054d928a18c0ee221f779b
  Complete output (31 lines):
  Traceback (most recent call last):
    File "/tmp/pip-build-env-33axupkf/overlay/lib/python3.9/site-packages/setuptools/_distutils/sysconfig.py", line 454, in _init_posix
      _temp = __import__(name, globals(), locals(), ['build_time_vars'], 0)
  ModuleNotFoundError: No module named '_sysconfigdata__sunos5_'

  During handling of the above exception, another exception occurred:

  Traceback (most recent call last):
    File "/opt/local/lib/python3.9/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 363, in <module>
      main()
    File "/opt/local/lib/python3.9/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 345, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "/opt/local/lib/python3.9/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 130, in get_requires_for_build_wheel
      return hook(config_settings)
    File "/tmp/pip-build-env-33axupkf/overlay/lib/python3.9/site-packages/setuptools/build_meta.py", line 177, in get_requires_for_build_wheel
      return self._get_build_requires(
    File "/tmp/pip-build-env-33axupkf/overlay/lib/python3.9/site-packages/setuptools/build_meta.py", line 159, in _get_build_requires
      self.run_setup()
    File "/tmp/pip-build-env-33axupkf/overlay/lib/python3.9/site-packages/setuptools/build_meta.py", line 174, in run_setup
      exec(compile(code, __file__, 'exec'), locals())
    File "setup.py", line 72, in <module>
      from setuptools.command.build_ext import build_ext as _build_ext
    File "/tmp/pip-build-env-33axupkf/overlay/lib/python3.9/site-packages/setuptools/command/build_ext.py", line 24, in <module>
      get_config_var("LDSHARED")
    File "/tmp/pip-build-env-33axupkf/overlay/lib/python3.9/site-packages/setuptools/_distutils/sysconfig.py", line 567, in get_config_var
      return get_config_vars().get(name)
    File "/tmp/pip-build-env-33axupkf/overlay/lib/python3.9/site-packages/setuptools/_distutils/sysconfig.py", line 498, in get_config_vars
      func()
    File "/tmp/pip-build-env-33axupkf/overlay/lib/python3.9/site-packages/setuptools/_distutils/sysconfig.py", line 457, in _init_posix
      _temp = __import__(
  ModuleNotFoundError: No module named '_sysconfigdata'
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/b5/fd/15638de2da0a5aa91c095718444624aa565f766fc178249ca6faa372f71a/PyYAML-5.4.tar.gz#sha256=3c49e39ac034fd64fd576d63bb4db53cda89b362768a67f07749d55f128ac18a (from https://pypi.org/simple/pyyaml/) (requires-python:>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*). Command errored out with exit status 1: /opt/local/bin/python3.9 /opt/local/lib/python3.9/site-packages/pip/_vendor/pep517/in_process/_in_process.py get_requires_for_build_wheel /tmp/tmp954hy9nu Check the logs for full command output.
  Downloading PyYAML-5.3.1.tar.gz (269 kB)
     |████████████████████████████████| 269 kB 57.1 MB/s
  Preparing metadata (setup.py) ... done
Collecting mkdocs-material
  Downloading mkdocs_material-8.2.3-py2.py3-none-any.whl (4.8 MB)
     |████████████████████████████████| 4.8 MB 28.9 MB/s
Collecting soupsieve>1.2
  Downloading soupsieve-2.3.1-py3-none-any.whl (37 kB)
Collecting mergedeep>=1.3.4
  Downloading mergedeep-1.3.4-py3-none-any.whl (6.4 kB)
Collecting Jinja2>=2.10.1
  Downloading Jinja2-3.0.3-py3-none-any.whl (133 kB)
     |████████████████████████████████| 133 kB 79.6 MB/s
Collecting Markdown>=3.2.1
  Downloading Markdown-3.3.6-py3-none-any.whl (97 kB)
     |████████████████████████████████| 97 kB 18.9 MB/s
Collecting ghp-import>=1.0
  Downloading ghp_import-2.0.2-py3-none-any.whl (11 kB)
Collecting pyyaml-env-tag>=0.1
  Downloading pyyaml_env_tag-0.1-py3-none-any.whl (3.9 kB)
Collecting packaging>=20.5
  Downloading packaging-21.3-py3-none-any.whl (40 kB)
     |████████████████████████████████| 40 kB 23.4 MB/s
Collecting click>=3.3
  Downloading click-8.0.4-py3-none-any.whl (97 kB)
     |████████████████████████████████| 97 kB 23.0 MB/s
Collecting watchdog>=2.0
  Downloading watchdog-2.1.6.tar.gz (107 kB)
     |████████████████████████████████| 107 kB 29.3 MB/s
  Preparing metadata (setup.py) ... done
Collecting importlib-metadata>=3.10
  Downloading importlib_metadata-4.11.2-py3-none-any.whl (17 kB)
Collecting six>=1.13.0
  Downloading six-1.16.0-py2.py3-none-any.whl (11 kB)
Collecting editorconfig>=0.12.2
  Downloading EditorConfig-0.12.3-py3-none-any.whl (16 kB)
Collecting pygments>=2.10
  Downloading Pygments-2.11.2-py3-none-any.whl (1.1 MB)
     |████████████████████████████████| 1.1 MB 32.5 MB/s
Collecting mkdocs-material-extensions>=1.0
  Downloading mkdocs_material_extensions-1.0.3-py3-none-any.whl (8.1 kB)
Collecting charset-normalizer~=2.0.0
  Downloading charset_normalizer-2.0.12-py3-none-any.whl (39 kB)
Collecting idna<4,>=2.5
  Downloading idna-3.3-py3-none-any.whl (61 kB)
     |████████████████████████████████| 61 kB 29.5 MB/s
Collecting urllib3<1.27,>=1.21.1
  Downloading urllib3-1.26.8-py2.py3-none-any.whl (138 kB)
     |████████████████████████████████| 138 kB 37.7 MB/s
Collecting certifi>=2017.4.17
  Downloading certifi-2021.10.8-py2.py3-none-any.whl (149 kB)
     |████████████████████████████████| 149 kB 60.9 MB/s
Collecting python-dateutil>=2.8.1
  Downloading python_dateutil-2.8.2-py2.py3-none-any.whl (247 kB)
     |████████████████████████████████| 247 kB 82.6 MB/s
Collecting zipp>=0.5
  Downloading zipp-3.7.0-py3-none-any.whl (5.3 kB)
Collecting MarkupSafe>=2.0
  Downloading MarkupSafe-2.1.0.tar.gz (18 kB)
  Preparing metadata (setup.py) ... done
Collecting pyparsing!=3.0.5,>=2.0.2
  Downloading pyparsing-3.0.7-py3-none-any.whl (98 kB)
     |████████████████████████████████| 98 kB 13.8 MB/s
Using legacy 'setup.py install' for pyyaml, since package 'wheel' is not installed.
Using legacy 'setup.py install' for watchdog, since package 'wheel' is not installed.
Using legacy 'setup.py install' for MarkupSafe, since package 'wheel' is not installed.
Building wheels for collected packages: jsbeautifier
  Building wheel for jsbeautifier (pyproject.toml) ... error
  ERROR: Command errored out with exit status 1:
   command: /opt/local/bin/python3.9 /opt/local/lib/python3.9/site-packages/pip/_vendor/pep517/in_process/_in_process.py build_wheel /tmp/tmp7ti3m67d
       cwd: /tmp/pip-install-f07_2s9m/jsbeautifier_dd7af40ca6f84fdfb74db001a15eef1d
  Complete output (66 lines):
  running bdist_wheel
  Traceback (most recent call last):
    File "/tmp/pip-build-env-t5pmuxw9/overlay/lib/python3.9/site-packages/setuptools/_distutils/sysconfig.py", line 454, in _init_posix
      _temp = __import__(name, globals(), locals(), ['build_time_vars'], 0)
  ModuleNotFoundError: No module named '_sysconfigdata__sunos5_'

  During handling of the above exception, another exception occurred:

  Traceback (most recent call last):
    File "/opt/local/lib/python3.9/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 363, in <module>
      main()
    File "/opt/local/lib/python3.9/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 345, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "/opt/local/lib/python3.9/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 261, in build_wheel
      return _build_backend().build_wheel(wheel_directory, config_settings,
    File "/tmp/pip-build-env-t5pmuxw9/overlay/lib/python3.9/site-packages/setuptools/build_meta.py", line 244, in build_wheel
      return self._build_with_temp_dir(['bdist_wheel'], '.whl',
    File "/tmp/pip-build-env-t5pmuxw9/overlay/lib/python3.9/site-packages/setuptools/build_meta.py", line 229, in _build_with_temp_dir
      self.run_setup()
    File "/tmp/pip-build-env-t5pmuxw9/overlay/lib/python3.9/site-packages/setuptools/build_meta.py", line 281, in run_setup
      super(_BuildMetaLegacyBackend,
    File "/tmp/pip-build-env-t5pmuxw9/overlay/lib/python3.9/site-packages/setuptools/build_meta.py", line 174, in run_setup
      exec(compile(code, __file__, 'exec'), locals())
    File "setup.py", line 31, in <module>
      setup(
    File "/tmp/pip-build-env-t5pmuxw9/overlay/lib/python3.9/site-packages/setuptools/__init__.py", line 155, in setup
      return distutils.core.setup(**attrs)
    File "/tmp/pip-build-env-t5pmuxw9/overlay/lib/python3.9/site-packages/setuptools/_distutils/core.py", line 148, in setup
      return run_commands(dist)
    File "/tmp/pip-build-env-t5pmuxw9/overlay/lib/python3.9/site-packages/setuptools/_distutils/core.py", line 163, in run_commands
      dist.run_commands()
    File "/tmp/pip-build-env-t5pmuxw9/overlay/lib/python3.9/site-packages/setuptools/_distutils/dist.py", line 967, in run_commands
      self.run_command(cmd)
    File "/tmp/pip-build-env-t5pmuxw9/overlay/lib/python3.9/site-packages/setuptools/_distutils/dist.py", line 986, in run_command
      cmd_obj.run()
    File "/tmp/pip-build-env-t5pmuxw9/overlay/lib/python3.9/site-packages/wheel/bdist_wheel.py", line 295, in run
      build_ext = self.reinitialize_command('build_ext')
    File "/tmp/pip-build-env-t5pmuxw9/overlay/lib/python3.9/site-packages/setuptools/__init__.py", line 210, in reinitialize_command
      cmd = _Command.reinitialize_command(self, command, reinit_subcommands)
    File "/tmp/pip-build-env-t5pmuxw9/overlay/lib/python3.9/site-packages/setuptools/_distutils/cmd.py", line 305, in reinitialize_command
      return self.distribution.reinitialize_command(command,
    File "/tmp/pip-build-env-t5pmuxw9/overlay/lib/python3.9/site-packages/setuptools/_distutils/dist.py", line 939, in reinitialize_command
      command = self.get_command_obj(command_name)
    File "/tmp/pip-build-env-t5pmuxw9/overlay/lib/python3.9/site-packages/setuptools/_distutils/dist.py", line 858, in get_command_obj
      klass = self.get_command_class(command)
    File "/tmp/pip-build-env-t5pmuxw9/overlay/lib/python3.9/site-packages/setuptools/dist.py", line 931, in get_command_class
      self.cmdclass[command] = cmdclass = ep.load()
    File "/tmp/pip-build-env-t5pmuxw9/overlay/lib/python3.9/site-packages/setuptools/_vendor/importlib_metadata/__init__.py", line 194, in load
      module = import_module(match.group('module'))
    File "/opt/local/lib/python3.9/importlib/__init__.py", line 127, in import_module
      return _bootstrap._gcd_import(name[level:], package, level)
    File "<frozen importlib._bootstrap>", line 1030, in _gcd_import
    File "<frozen importlib._bootstrap>", line 1007, in _find_and_load
    File "<frozen importlib._bootstrap>", line 986, in _find_and_load_unlocked
    File "<frozen importlib._bootstrap>", line 680, in _load_unlocked
    File "<frozen importlib._bootstrap_external>", line 850, in exec_module
    File "<frozen importlib._bootstrap>", line 228, in _call_with_frames_removed
    File "/tmp/pip-build-env-t5pmuxw9/overlay/lib/python3.9/site-packages/setuptools/command/build_ext.py", line 24, in <module>
      get_config_var("LDSHARED")
    File "/tmp/pip-build-env-t5pmuxw9/overlay/lib/python3.9/site-packages/setuptools/_distutils/sysconfig.py", line 567, in get_config_var
      return get_config_vars().get(name)
    File "/tmp/pip-build-env-t5pmuxw9/overlay/lib/python3.9/site-packages/setuptools/_distutils/sysconfig.py", line 498, in get_config_vars
      func()
    File "/tmp/pip-build-env-t5pmuxw9/overlay/lib/python3.9/site-packages/setuptools/_distutils/sysconfig.py", line 457, in _init_posix
      _temp = __import__(
  ModuleNotFoundError: No module named '_sysconfigdata'
  ----------------------------------------
  ERROR: Failed building wheel for jsbeautifier
Failed to build jsbeautifier
ERROR: Could not build wheels for jsbeautifier, which is required to install pyproject.toml-based projects
[root@jonny5isaliveerer ~]#
numericillustration commented 2 years ago

Debian 10 for comparison:

root@jonny5isalive:~# apt-cache search python3-pip
root@jonny5isalive:~# sudo apt update
Get:1 http://deb.debian.org/debian buster InRelease [122 kB]
Get:2 http://security.debian.org buster/updates InRelease [65.4 kB]
Get:3 http://deb.debian.org/debian buster-updates InRelease [51.9 kB]
Get:4 http://deb.debian.org/debian buster-backports InRelease [46.7 kB]
Get:5 http://security.debian.org buster/updates/main Sources [223 kB]
Get:6 http://security.debian.org buster/updates/main amd64 Packages [317 kB]
Get:7 http://security.debian.org buster/updates/main Translation-en [171 kB]
Get:8 http://deb.debian.org/debian buster/main Sources [7837 kB]
Get:9 http://deb.debian.org/debian buster/main amd64 Packages [7906 kB]
Get:10 http://deb.debian.org/debian buster/main Translation-en [5968 kB]
Get:11 http://deb.debian.org/debian buster-updates/main Sources [4604 B]
Get:12 http://deb.debian.org/debian buster-updates/main amd64 Packages [8792 B]
Get:13 http://deb.debian.org/debian buster-updates/main Translation-en [6915 B]
Get:14 http://deb.debian.org/debian buster-backports/main Sources [463 kB]
Get:15 http://deb.debian.org/debian buster-backports/main amd64 Packages [488 kB]
Get:16 http://deb.debian.org/debian buster-backports/main Translation-en [411 kB]
Fetched 24.1 MB in 24s (990 kB/s)
Reading package lists... Done
Building dependency tree
Reading state information... Done
77 packages can be upgraded. Run 'apt list --upgradable' to see them.
root@jonny5isalive:~# apt-cache search python3-pip
python3-pip - Python package installer
python3-pipdeptree - display dependency tree of the installed Python 3 packages
root@jonny5isalive:~# apt-get install python3-pip
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
  binutils binutils-common binutils-x86-64-linux-gnu build-essential cpp cpp-8 dh-python dirmngr dpkg-dev fakeroot g++ g++-8 gcc gcc-8 gir1.2-glib-2.0 gnupg gnupg-l10n gnupg-utils gpg gpg-agent gpg-wks-client gpg-wks-server
  gpgconf gpgsm libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan5 libassuan0 libatomic1 libbinutils libc-dev-bin libc6-dev libcc1-0 libdpkg-perl libexpat1 libexpat1-dev libfakeroot
  libfile-fcntllock-perl libgcc-8-dev libgirepository-1.0-1 libglib2.0-0 libglib2.0-data libgomp1 libicu63 libisl19 libitm1 libksba8 liblsan0 libmpc3 libmpfr6 libmpx2 libnpth0 libpython3-dev libpython3.7 libpython3.7-dev
  libpython3.7-minimal libpython3.7-stdlib libquadmath0 libstdc++-8-dev libtsan0 libubsan1 libxml2 linux-libc-dev make manpages manpages-dev patch pinentry-curses python-pip-whl python3-crypto python3-dbus python3-dev
  python3-distutils python3-entrypoints python3-gi python3-keyring python3-keyrings.alt python3-lib2to3 python3-secretstorage python3-setuptools python3-wheel python3-xdg python3.7 python3.7-dev python3.7-minimal
  shared-mime-info xdg-user-dirs
Suggested packages:
  binutils-doc cpp-doc gcc-8-locales dbus-user-session pinentry-gnome3 tor debian-keyring g++-multilib g++-8-multilib gcc-8-doc libstdc++6-8-dbg gcc-multilib autoconf automake libtool flex bison gdb gcc-doc gcc-8-multilib
  libgcc1-dbg libgomp1-dbg libitm1-dbg libatomic1-dbg libasan5-dbg liblsan0-dbg libtsan0-dbg libubsan1-dbg libmpx2-dbg libquadmath0-dbg parcimonie xloadimage scdaemon glibc-doc git bzr libstdc++-8-doc make-doc ed
  diffutils-doc pinentry-doc python-crypto-doc python-dbus-doc python3-dbus-dbg gnome-keyring libkf5wallet-bin gir1.2-gnomekeyring-1.0 python-secretstorage-doc python-setuptools-doc python3.7-venv python3.7-doc
  binfmt-support
The following NEW packages will be installed:
  binutils binutils-common binutils-x86-64-linux-gnu build-essential cpp cpp-8 dh-python dirmngr dpkg-dev fakeroot g++ g++-8 gcc gcc-8 gir1.2-glib-2.0 gnupg gnupg-l10n gnupg-utils gpg gpg-agent gpg-wks-client gpg-wks-server
  gpgconf gpgsm libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan5 libassuan0 libatomic1 libbinutils libc-dev-bin libc6-dev libcc1-0 libdpkg-perl libexpat1-dev libfakeroot
  libfile-fcntllock-perl libgcc-8-dev libgirepository-1.0-1 libglib2.0-0 libglib2.0-data libgomp1 libicu63 libisl19 libitm1 libksba8 liblsan0 libmpc3 libmpfr6 libmpx2 libnpth0 libpython3-dev libpython3.7 libpython3.7-dev
  libquadmath0 libstdc++-8-dev libtsan0 libubsan1 libxml2 linux-libc-dev make manpages manpages-dev patch pinentry-curses python-pip-whl python3-crypto python3-dbus python3-dev python3-distutils python3-entrypoints
  python3-gi python3-keyring python3-keyrings.alt python3-lib2to3 python3-pip python3-secretstorage python3-setuptools python3-wheel python3-xdg python3.7-dev shared-mime-info xdg-user-dirs
The following packages will be upgraded:
  libexpat1 libpython3.7-minimal libpython3.7-stdlib python3.7 python3.7-minimal
5 upgraded, 84 newly installed, 0 to remove and 72 not upgraded.
Need to get 129 MB of archives.
After this operation, 355 MB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://security.debian.org buster/updates/main amd64 libexpat1 amd64 2.2.6-2+deb10u3 [108 kB]
Get:2 http://deb.debian.org/debian buster/main amd64 python3.7 amd64 3.7.3-2+deb10u3 [330 kB]
Get:3 http://security.debian.org buster/updates/main amd64 libexpat1-dev amd64 2.2.6-2+deb10u3 [154 kB]
Get:4 http://deb.debian.org/debian buster/main amd64 libpython3.7-stdlib amd64 3.7.3-2+deb10u3 [1734 kB]
Get:5 http://security.debian.org buster/updates/main amd64 libicu63 amd64 63.1-6+deb10u2 [8300 kB]
Get:6 http://deb.debian.org/debian buster/main amd64 python3.7-minimal amd64 3.7.3-2+deb10u3 [1737 kB]
Get:7 http://deb.debian.org/debian buster/main amd64 libpython3.7-minimal amd64 3.7.3-2+deb10u3 [589 kB]
Get:8 http://deb.debian.org/debian buster/main amd64 manpages all 4.16-2 [1295 kB]
Get:9 http://deb.debian.org/debian buster/main amd64 binutils-common amd64 2.31.1-16 [2073 kB]
Get:10 http://deb.debian.org/debian buster/main amd64 libbinutils amd64 2.31.1-16 [478 kB]
Get:11 http://deb.debian.org/debian buster/main amd64 binutils-x86-64-linux-gnu amd64 2.31.1-16 [1823 kB]
Get:12 http://deb.debian.org/debian buster/main amd64 binutils amd64 2.31.1-16 [56.8 kB]
Get:13 http://deb.debian.org/debian buster/main amd64 libc-dev-bin amd64 2.28-10 [275 kB]
Get:14 http://deb.debian.org/debian buster/main amd64 linux-libc-dev amd64 4.19.208-1 [1482 kB]
Get:15 http://deb.debian.org/debian buster/main amd64 libc6-dev amd64 2.28-10 [2691 kB]
Get:16 http://deb.debian.org/debian buster/main amd64 libisl19 amd64 0.20-2 [587 kB]
Get:17 http://deb.debian.org/debian buster/main amd64 libmpfr6 amd64 4.0.2-1 [775 kB]
Get:18 http://deb.debian.org/debian buster/main amd64 libmpc3 amd64 1.1.0-1 [41.3 kB]
Get:19 http://deb.debian.org/debian buster/main amd64 cpp-8 amd64 8.3.0-6 [8914 kB]
Get:20 http://deb.debian.org/debian buster/main amd64 cpp amd64 4:8.3.0-1 [19.4 kB]
Get:21 http://deb.debian.org/debian buster/main amd64 libcc1-0 amd64 8.3.0-6 [46.6 kB]
Get:22 http://deb.debian.org/debian buster/main amd64 libgomp1 amd64 8.3.0-6 [75.8 kB]
Get:23 http://deb.debian.org/debian buster/main amd64 libitm1 amd64 8.3.0-6 [27.7 kB]
Get:24 http://deb.debian.org/debian buster/main amd64 libatomic1 amd64 8.3.0-6 [9032 B]
Get:25 http://deb.debian.org/debian buster/main amd64 libasan5 amd64 8.3.0-6 [362 kB]
Get:26 http://deb.debian.org/debian buster/main amd64 liblsan0 amd64 8.3.0-6 [131 kB]
Get:27 http://deb.debian.org/debian buster/main amd64 libtsan0 amd64 8.3.0-6 [283 kB]
Get:28 http://deb.debian.org/debian buster/main amd64 libubsan1 amd64 8.3.0-6 [120 kB]
Get:29 http://deb.debian.org/debian buster/main amd64 libmpx2 amd64 8.3.0-6 [11.4 kB]
Get:30 http://deb.debian.org/debian buster/main amd64 libquadmath0 amd64 8.3.0-6 [133 kB]
Get:31 http://deb.debian.org/debian buster/main amd64 libgcc-8-dev amd64 8.3.0-6 [2298 kB]
Get:32 http://deb.debian.org/debian buster/main amd64 gcc-8 amd64 8.3.0-6 [9452 kB]
Get:33 http://deb.debian.org/debian buster/main amd64 gcc amd64 4:8.3.0-1 [5196 B]
Get:34 http://deb.debian.org/debian buster/main amd64 libstdc++-8-dev amd64 8.3.0-6 [1532 kB]
Get:35 http://deb.debian.org/debian buster/main amd64 g++-8 amd64 8.3.0-6 [9752 kB]
Get:36 http://deb.debian.org/debian buster/main amd64 g++ amd64 4:8.3.0-1 [1644 B]
Get:37 http://deb.debian.org/debian buster/main amd64 make amd64 4.2.1-1.2 [341 kB]
Get:38 http://deb.debian.org/debian buster/main amd64 libdpkg-perl all 1.19.7 [1414 kB]
Get:39 http://deb.debian.org/debian buster/main amd64 patch amd64 2.7.6-3+deb10u1 [126 kB]
Get:40 http://deb.debian.org/debian buster/main amd64 dpkg-dev all 1.19.7 [1773 kB]
Get:41 http://deb.debian.org/debian buster/main amd64 build-essential amd64 12.6 [7576 B]
Get:42 http://deb.debian.org/debian buster/main amd64 python3-lib2to3 all 3.7.3-1 [76.7 kB]
Get:43 http://deb.debian.org/debian buster/main amd64 python3-distutils all 3.7.3-1 [142 kB]
Get:44 http://deb.debian.org/debian buster/main amd64 dh-python all 3.20190308 [99.3 kB]
Get:45 http://deb.debian.org/debian buster/main amd64 libassuan0 amd64 2.5.2-1 [49.4 kB]
Get:46 http://deb.debian.org/debian buster/main amd64 gpgconf amd64 2.2.12-1+deb10u1 [510 kB]
Get:47 http://deb.debian.org/debian buster/main amd64 libksba8 amd64 1.3.5-2 [99.7 kB]
Get:48 http://deb.debian.org/debian buster/main amd64 libnpth0 amd64 1.6-1 [18.4 kB]
Get:49 http://deb.debian.org/debian buster/main amd64 dirmngr amd64 2.2.12-1+deb10u1 [712 kB]
Get:50 http://deb.debian.org/debian buster/main amd64 libfakeroot amd64 1.23-1 [45.9 kB]
Get:51 http://deb.debian.org/debian buster/main amd64 fakeroot amd64 1.23-1 [85.8 kB]
Get:52 http://deb.debian.org/debian buster/main amd64 libglib2.0-0 amd64 2.58.3-2+deb10u3 [1259 kB]
Get:53 http://deb.debian.org/debian buster/main amd64 libgirepository-1.0-1 amd64 1.58.3-2 [92.8 kB]
Get:54 http://deb.debian.org/debian buster/main amd64 gir1.2-glib-2.0 amd64 1.58.3-2 [143 kB]
Get:55 http://deb.debian.org/debian buster/main amd64 gnupg-l10n all 2.2.12-1+deb10u1 [1010 kB]
Get:56 http://deb.debian.org/debian buster/main amd64 gnupg-utils amd64 2.2.12-1+deb10u1 [861 kB]
Get:57 http://deb.debian.org/debian buster/main amd64 gpg amd64 2.2.12-1+deb10u1 [865 kB]
Get:58 http://deb.debian.org/debian buster/main amd64 pinentry-curses amd64 1.1.0-2 [64.5 kB]
Get:59 http://deb.debian.org/debian buster/main amd64 gpg-agent amd64 2.2.12-1+deb10u1 [617 kB]
Get:60 http://deb.debian.org/debian buster/main amd64 gpg-wks-client amd64 2.2.12-1+deb10u1 [485 kB]
Get:61 http://deb.debian.org/debian buster/main amd64 gpg-wks-server amd64 2.2.12-1+deb10u1 [478 kB]
Get:62 http://deb.debian.org/debian buster/main amd64 gpgsm amd64 2.2.12-1+deb10u1 [604 kB]
Get:63 http://deb.debian.org/debian buster/main amd64 gnupg all 2.2.12-1+deb10u1 [715 kB]
Get:64 http://deb.debian.org/debian buster/main amd64 libalgorithm-diff-perl all 1.19.03-2 [47.9 kB]
Get:65 http://deb.debian.org/debian buster/main amd64 libalgorithm-diff-xs-perl amd64 0.04-5+b1 [11.8 kB]
Get:66 http://deb.debian.org/debian buster/main amd64 libalgorithm-merge-perl all 0.08-3 [12.7 kB]
Get:67 http://deb.debian.org/debian buster/main amd64 libfile-fcntllock-perl amd64 0.22-3+b5 [35.4 kB]
Get:68 http://deb.debian.org/debian buster/main amd64 libglib2.0-data all 2.58.3-2+deb10u3 [1111 kB]
Get:69 http://deb.debian.org/debian buster/main amd64 libpython3.7 amd64 3.7.3-2+deb10u3 [1498 kB]
Get:70 http://deb.debian.org/debian buster/main amd64 libpython3.7-dev amd64 3.7.3-2+deb10u3 [48.4 MB]
Get:71 http://deb.debian.org/debian buster/main amd64 libpython3-dev amd64 3.7.3-1 [20.1 kB]
Get:72 http://deb.debian.org/debian buster/main amd64 libxml2 amd64 2.9.4+dfsg1-7+deb10u2 [689 kB]
Get:73 http://deb.debian.org/debian buster/main amd64 manpages-dev all 4.16-2 [2232 kB]
Get:74 http://deb.debian.org/debian buster/main amd64 python-pip-whl all 18.1-5 [1591 kB]
Get:75 http://deb.debian.org/debian buster/main amd64 python3-crypto amd64 2.6.1-9+b1 [263 kB]
Get:76 http://deb.debian.org/debian buster/main amd64 python3-dbus amd64 1.2.8-3 [103 kB]
Get:77 http://deb.debian.org/debian buster/main amd64 python3.7-dev amd64 3.7.3-2+deb10u3 [510 kB]
Get:78 http://deb.debian.org/debian buster/main amd64 python3-dev amd64 3.7.3-1 [1264 B]
Get:79 http://deb.debian.org/debian buster/main amd64 python3-entrypoints all 0.3-1 [5508 B]
Get:80 http://deb.debian.org/debian buster/main amd64 python3-gi amd64 3.30.4-1 [180 kB]
Get:81 http://deb.debian.org/debian buster/main amd64 python3-secretstorage all 2.3.1-2 [14.2 kB]
Get:82 http://deb.debian.org/debian buster/main amd64 python3-keyring all 17.1.1-1 [43.1 kB]
Get:83 http://deb.debian.org/debian buster/main amd64 python3-keyrings.alt all 3.1.1-1 [18.2 kB]
Get:84 http://deb.debian.org/debian buster/main amd64 python3-pip all 18.1-5 [171 kB]
Get:85 http://deb.debian.org/debian buster/main amd64 python3-setuptools all 40.8.0-1 [306 kB]
Get:86 http://deb.debian.org/debian buster/main amd64 python3-wheel all 0.32.3-2 [19.4 kB]
Get:87 http://deb.debian.org/debian buster/main amd64 python3-xdg all 0.25-5 [35.9 kB]
Get:88 http://deb.debian.org/debian buster/main amd64 shared-mime-info amd64 1.10-1 [766 kB]
Get:89 http://deb.debian.org/debian buster/main amd64 xdg-user-dirs amd64 0.17-2 [53.8 kB]
Fetched 129 MB in 10s (12.5 MB/s)
Extracting templates from packages: 100%
(Reading database ... 26862 files and directories currently installed.)
Preparing to unpack .../00-python3.7_3.7.3-2+deb10u3_amd64.deb ...
Unpacking python3.7 (3.7.3-2+deb10u3) over (3.7.3-2+deb10u1) ...
Preparing to unpack .../01-libpython3.7-stdlib_3.7.3-2+deb10u3_amd64.deb ...
Unpacking libpython3.7-stdlib:amd64 (3.7.3-2+deb10u3) over (3.7.3-2+deb10u1) ...
Preparing to unpack .../02-python3.7-minimal_3.7.3-2+deb10u3_amd64.deb ...
Unpacking python3.7-minimal (3.7.3-2+deb10u3) over (3.7.3-2+deb10u1) ...
Preparing to unpack .../03-libpython3.7-minimal_3.7.3-2+deb10u3_amd64.deb ...
Unpacking libpython3.7-minimal:amd64 (3.7.3-2+deb10u3) over (3.7.3-2+deb10u1) ...
Preparing to unpack .../04-libexpat1_2.2.6-2+deb10u3_amd64.deb ...
Unpacking libexpat1:amd64 (2.2.6-2+deb10u3) over (2.2.6-2+deb10u1) ...
Selecting previously unselected package manpages.
Preparing to unpack .../05-manpages_4.16-2_all.deb ...
Unpacking manpages (4.16-2) ...
Selecting previously unselected package binutils-common:amd64.
Preparing to unpack .../06-binutils-common_2.31.1-16_amd64.deb ...
Unpacking binutils-common:amd64 (2.31.1-16) ...
Selecting previously unselected package libbinutils:amd64.
Preparing to unpack .../07-libbinutils_2.31.1-16_amd64.deb ...
Unpacking libbinutils:amd64 (2.31.1-16) ...
Selecting previously unselected package binutils-x86-64-linux-gnu.
Preparing to unpack .../08-binutils-x86-64-linux-gnu_2.31.1-16_amd64.deb ...
Unpacking binutils-x86-64-linux-gnu (2.31.1-16) ...
Selecting previously unselected package binutils.
Preparing to unpack .../09-binutils_2.31.1-16_amd64.deb ...
Unpacking binutils (2.31.1-16) ...
Selecting previously unselected package libc-dev-bin.
Preparing to unpack .../10-libc-dev-bin_2.28-10_amd64.deb ...
Unpacking libc-dev-bin (2.28-10) ...
Selecting previously unselected package linux-libc-dev:amd64.
Preparing to unpack .../11-linux-libc-dev_4.19.208-1_amd64.deb ...
Unpacking linux-libc-dev:amd64 (4.19.208-1) ...
Selecting previously unselected package libc6-dev:amd64.
Preparing to unpack .../12-libc6-dev_2.28-10_amd64.deb ...
Unpacking libc6-dev:amd64 (2.28-10) ...
Selecting previously unselected package libisl19:amd64.
Preparing to unpack .../13-libisl19_0.20-2_amd64.deb ...
Unpacking libisl19:amd64 (0.20-2) ...
Selecting previously unselected package libmpfr6:amd64.
Preparing to unpack .../14-libmpfr6_4.0.2-1_amd64.deb ...
Unpacking libmpfr6:amd64 (4.0.2-1) ...
Selecting previously unselected package libmpc3:amd64.
Preparing to unpack .../15-libmpc3_1.1.0-1_amd64.deb ...
Unpacking libmpc3:amd64 (1.1.0-1) ...
Selecting previously unselected package cpp-8.
Preparing to unpack .../16-cpp-8_8.3.0-6_amd64.deb ...
Unpacking cpp-8 (8.3.0-6) ...
Selecting previously unselected package cpp.
Preparing to unpack .../17-cpp_4%3a8.3.0-1_amd64.deb ...
Unpacking cpp (4:8.3.0-1) ...
Selecting previously unselected package libcc1-0:amd64.
Preparing to unpack .../18-libcc1-0_8.3.0-6_amd64.deb ...
Unpacking libcc1-0:amd64 (8.3.0-6) ...
Selecting previously unselected package libgomp1:amd64.
Preparing to unpack .../19-libgomp1_8.3.0-6_amd64.deb ...
Unpacking libgomp1:amd64 (8.3.0-6) ...
Selecting previously unselected package libitm1:amd64.
Preparing to unpack .../20-libitm1_8.3.0-6_amd64.deb ...
Unpacking libitm1:amd64 (8.3.0-6) ...
Selecting previously unselected package libatomic1:amd64.
Preparing to unpack .../21-libatomic1_8.3.0-6_amd64.deb ...
Unpacking libatomic1:amd64 (8.3.0-6) ...
Selecting previously unselected package libasan5:amd64.
Preparing to unpack .../22-libasan5_8.3.0-6_amd64.deb ...
Unpacking libasan5:amd64 (8.3.0-6) ...
Selecting previously unselected package liblsan0:amd64.
Preparing to unpack .../23-liblsan0_8.3.0-6_amd64.deb ...
Unpacking liblsan0:amd64 (8.3.0-6) ...
Selecting previously unselected package libtsan0:amd64.
Preparing to unpack .../24-libtsan0_8.3.0-6_amd64.deb ...
Unpacking libtsan0:amd64 (8.3.0-6) ...
Selecting previously unselected package libubsan1:amd64.
Preparing to unpack .../25-libubsan1_8.3.0-6_amd64.deb ...
Unpacking libubsan1:amd64 (8.3.0-6) ...
Selecting previously unselected package libmpx2:amd64.
Preparing to unpack .../26-libmpx2_8.3.0-6_amd64.deb ...
Unpacking libmpx2:amd64 (8.3.0-6) ...
Selecting previously unselected package libquadmath0:amd64.
Preparing to unpack .../27-libquadmath0_8.3.0-6_amd64.deb ...
Unpacking libquadmath0:amd64 (8.3.0-6) ...
Selecting previously unselected package libgcc-8-dev:amd64.
Preparing to unpack .../28-libgcc-8-dev_8.3.0-6_amd64.deb ...
Unpacking libgcc-8-dev:amd64 (8.3.0-6) ...
Selecting previously unselected package gcc-8.
Preparing to unpack .../29-gcc-8_8.3.0-6_amd64.deb ...
Unpacking gcc-8 (8.3.0-6) ...
Selecting previously unselected package gcc.
Preparing to unpack .../30-gcc_4%3a8.3.0-1_amd64.deb ...
Unpacking gcc (4:8.3.0-1) ...
Selecting previously unselected package libstdc++-8-dev:amd64.
Preparing to unpack .../31-libstdc++-8-dev_8.3.0-6_amd64.deb ...
Unpacking libstdc++-8-dev:amd64 (8.3.0-6) ...
Selecting previously unselected package g++-8.
Preparing to unpack .../32-g++-8_8.3.0-6_amd64.deb ...
Unpacking g++-8 (8.3.0-6) ...
Selecting previously unselected package g++.
Preparing to unpack .../33-g++_4%3a8.3.0-1_amd64.deb ...
Unpacking g++ (4:8.3.0-1) ...
Selecting previously unselected package make.
Preparing to unpack .../34-make_4.2.1-1.2_amd64.deb ...
Unpacking make (4.2.1-1.2) ...
Selecting previously unselected package libdpkg-perl.
Preparing to unpack .../35-libdpkg-perl_1.19.7_all.deb ...
Unpacking libdpkg-perl (1.19.7) ...
Selecting previously unselected package patch.
Preparing to unpack .../36-patch_2.7.6-3+deb10u1_amd64.deb ...
Unpacking patch (2.7.6-3+deb10u1) ...
Selecting previously unselected package dpkg-dev.
Preparing to unpack .../37-dpkg-dev_1.19.7_all.deb ...
Unpacking dpkg-dev (1.19.7) ...
Selecting previously unselected package build-essential.
Preparing to unpack .../38-build-essential_12.6_amd64.deb ...
Unpacking build-essential (12.6) ...
Selecting previously unselected package python3-lib2to3.
Preparing to unpack .../39-python3-lib2to3_3.7.3-1_all.deb ...
Unpacking python3-lib2to3 (3.7.3-1) ...
Selecting previously unselected package python3-distutils.
Preparing to unpack .../40-python3-distutils_3.7.3-1_all.deb ...
Unpacking python3-distutils (3.7.3-1) ...
Selecting previously unselected package dh-python.
Preparing to unpack .../41-dh-python_3.20190308_all.deb ...
Unpacking dh-python (3.20190308) ...
Selecting previously unselected package libassuan0:amd64.
Preparing to unpack .../42-libassuan0_2.5.2-1_amd64.deb ...
Unpacking libassuan0:amd64 (2.5.2-1) ...
Selecting previously unselected package gpgconf.
Preparing to unpack .../43-gpgconf_2.2.12-1+deb10u1_amd64.deb ...
Unpacking gpgconf (2.2.12-1+deb10u1) ...
Selecting previously unselected package libksba8:amd64.
Preparing to unpack .../44-libksba8_1.3.5-2_amd64.deb ...
Unpacking libksba8:amd64 (1.3.5-2) ...
Selecting previously unselected package libnpth0:amd64.
Preparing to unpack .../45-libnpth0_1.6-1_amd64.deb ...
Unpacking libnpth0:amd64 (1.6-1) ...
Selecting previously unselected package dirmngr.
Preparing to unpack .../46-dirmngr_2.2.12-1+deb10u1_amd64.deb ...
Unpacking dirmngr (2.2.12-1+deb10u1) ...
Selecting previously unselected package libfakeroot:amd64.
Preparing to unpack .../47-libfakeroot_1.23-1_amd64.deb ...
Unpacking libfakeroot:amd64 (1.23-1) ...
Selecting previously unselected package fakeroot.
Preparing to unpack .../48-fakeroot_1.23-1_amd64.deb ...
Unpacking fakeroot (1.23-1) ...
Selecting previously unselected package libglib2.0-0:amd64.
Preparing to unpack .../49-libglib2.0-0_2.58.3-2+deb10u3_amd64.deb ...
Unpacking libglib2.0-0:amd64 (2.58.3-2+deb10u3) ...
Selecting previously unselected package libgirepository-1.0-1:amd64.
Preparing to unpack .../50-libgirepository-1.0-1_1.58.3-2_amd64.deb ...
Unpacking libgirepository-1.0-1:amd64 (1.58.3-2) ...
Selecting previously unselected package gir1.2-glib-2.0:amd64.
Preparing to unpack .../51-gir1.2-glib-2.0_1.58.3-2_amd64.deb ...
Unpacking gir1.2-glib-2.0:amd64 (1.58.3-2) ...
Selecting previously unselected package gnupg-l10n.
Preparing to unpack .../52-gnupg-l10n_2.2.12-1+deb10u1_all.deb ...
Unpacking gnupg-l10n (2.2.12-1+deb10u1) ...
Selecting previously unselected package gnupg-utils.
Preparing to unpack .../53-gnupg-utils_2.2.12-1+deb10u1_amd64.deb ...
Unpacking gnupg-utils (2.2.12-1+deb10u1) ...
Selecting previously unselected package gpg.
Preparing to unpack .../54-gpg_2.2.12-1+deb10u1_amd64.deb ...
Unpacking gpg (2.2.12-1+deb10u1) ...
Selecting previously unselected package pinentry-curses.
Preparing to unpack .../55-pinentry-curses_1.1.0-2_amd64.deb ...
Unpacking pinentry-curses (1.1.0-2) ...
Selecting previously unselected package gpg-agent.
Preparing to unpack .../56-gpg-agent_2.2.12-1+deb10u1_amd64.deb ...
Unpacking gpg-agent (2.2.12-1+deb10u1) ...
Selecting previously unselected package gpg-wks-client.
Preparing to unpack .../57-gpg-wks-client_2.2.12-1+deb10u1_amd64.deb ...
Unpacking gpg-wks-client (2.2.12-1+deb10u1) ...
Selecting previously unselected package gpg-wks-server.
Preparing to unpack .../58-gpg-wks-server_2.2.12-1+deb10u1_amd64.deb ...
Unpacking gpg-wks-server (2.2.12-1+deb10u1) ...
Selecting previously unselected package gpgsm.
Preparing to unpack .../59-gpgsm_2.2.12-1+deb10u1_amd64.deb ...
Unpacking gpgsm (2.2.12-1+deb10u1) ...
Selecting previously unselected package gnupg.
Preparing to unpack .../60-gnupg_2.2.12-1+deb10u1_all.deb ...
Unpacking gnupg (2.2.12-1+deb10u1) ...
Selecting previously unselected package libalgorithm-diff-perl.
Preparing to unpack .../61-libalgorithm-diff-perl_1.19.03-2_all.deb ...
Unpacking libalgorithm-diff-perl (1.19.03-2) ...
Selecting previously unselected package libalgorithm-diff-xs-perl.
Preparing to unpack .../62-libalgorithm-diff-xs-perl_0.04-5+b1_amd64.deb ...
Unpacking libalgorithm-diff-xs-perl (0.04-5+b1) ...
Selecting previously unselected package libalgorithm-merge-perl.
Preparing to unpack .../63-libalgorithm-merge-perl_0.08-3_all.deb ...
Unpacking libalgorithm-merge-perl (0.08-3) ...
Selecting previously unselected package libexpat1-dev:amd64.
Preparing to unpack .../64-libexpat1-dev_2.2.6-2+deb10u3_amd64.deb ...
Unpacking libexpat1-dev:amd64 (2.2.6-2+deb10u3) ...
Selecting previously unselected package libfile-fcntllock-perl.
Preparing to unpack .../65-libfile-fcntllock-perl_0.22-3+b5_amd64.deb ...
Unpacking libfile-fcntllock-perl (0.22-3+b5) ...
Selecting previously unselected package libglib2.0-data.
Preparing to unpack .../66-libglib2.0-data_2.58.3-2+deb10u3_all.deb ...
Unpacking libglib2.0-data (2.58.3-2+deb10u3) ...
Selecting previously unselected package libicu63:amd64.
Preparing to unpack .../67-libicu63_63.1-6+deb10u2_amd64.deb ...
Unpacking libicu63:amd64 (63.1-6+deb10u2) ...
Selecting previously unselected package libpython3.7:amd64.
Preparing to unpack .../68-libpython3.7_3.7.3-2+deb10u3_amd64.deb ...
Unpacking libpython3.7:amd64 (3.7.3-2+deb10u3) ...
Selecting previously unselected package libpython3.7-dev:amd64.
Preparing to unpack .../69-libpython3.7-dev_3.7.3-2+deb10u3_amd64.deb ...
Unpacking libpython3.7-dev:amd64 (3.7.3-2+deb10u3) ...
Selecting previously unselected package libpython3-dev:amd64.
Preparing to unpack .../70-libpython3-dev_3.7.3-1_amd64.deb ...
Unpacking libpython3-dev:amd64 (3.7.3-1) ...
Selecting previously unselected package libxml2:amd64.
Preparing to unpack .../71-libxml2_2.9.4+dfsg1-7+deb10u2_amd64.deb ...
Unpacking libxml2:amd64 (2.9.4+dfsg1-7+deb10u2) ...
Selecting previously unselected package manpages-dev.
Preparing to unpack .../72-manpages-dev_4.16-2_all.deb ...
Unpacking manpages-dev (4.16-2) ...
Selecting previously unselected package python-pip-whl.
Preparing to unpack .../73-python-pip-whl_18.1-5_all.deb ...
Unpacking python-pip-whl (18.1-5) ...
Selecting previously unselected package python3-crypto.
Preparing to unpack .../74-python3-crypto_2.6.1-9+b1_amd64.deb ...
Unpacking python3-crypto (2.6.1-9+b1) ...
Selecting previously unselected package python3-dbus.
Preparing to unpack .../75-python3-dbus_1.2.8-3_amd64.deb ...
Unpacking python3-dbus (1.2.8-3) ...
Selecting previously unselected package python3.7-dev.
Preparing to unpack .../76-python3.7-dev_3.7.3-2+deb10u3_amd64.deb ...
Unpacking python3.7-dev (3.7.3-2+deb10u3) ...
Selecting previously unselected package python3-dev.
Preparing to unpack .../77-python3-dev_3.7.3-1_amd64.deb ...
Unpacking python3-dev (3.7.3-1) ...
Selecting previously unselected package python3-entrypoints.
Preparing to unpack .../78-python3-entrypoints_0.3-1_all.deb ...
Unpacking python3-entrypoints (0.3-1) ...
Selecting previously unselected package python3-gi.
Preparing to unpack .../79-python3-gi_3.30.4-1_amd64.deb ...
Unpacking python3-gi (3.30.4-1) ...
Selecting previously unselected package python3-secretstorage.
Preparing to unpack .../80-python3-secretstorage_2.3.1-2_all.deb ...
Unpacking python3-secretstorage (2.3.1-2) ...
Selecting previously unselected package python3-keyring.
Preparing to unpack .../81-python3-keyring_17.1.1-1_all.deb ...
Unpacking python3-keyring (17.1.1-1) ...
Selecting previously unselected package python3-keyrings.alt.
Preparing to unpack .../82-python3-keyrings.alt_3.1.1-1_all.deb ...
Unpacking python3-keyrings.alt (3.1.1-1) ...
Selecting previously unselected package python3-pip.
Preparing to unpack .../83-python3-pip_18.1-5_all.deb ...
Unpacking python3-pip (18.1-5) ...
Selecting previously unselected package python3-setuptools.
Preparing to unpack .../84-python3-setuptools_40.8.0-1_all.deb ...
Unpacking python3-setuptools (40.8.0-1) ...
Selecting previously unselected package python3-wheel.
Preparing to unpack .../85-python3-wheel_0.32.3-2_all.deb ...
Unpacking python3-wheel (0.32.3-2) ...
Selecting previously unselected package python3-xdg.
Preparing to unpack .../86-python3-xdg_0.25-5_all.deb ...
Unpacking python3-xdg (0.25-5) ...
Selecting previously unselected package shared-mime-info.
Preparing to unpack .../87-shared-mime-info_1.10-1_amd64.deb ...
Unpacking shared-mime-info (1.10-1) ...
Selecting previously unselected package xdg-user-dirs.
Preparing to unpack .../88-xdg-user-dirs_0.17-2_amd64.deb ...
Unpacking xdg-user-dirs (0.17-2) ...
Setting up python3-entrypoints (0.3-1) ...
Setting up libksba8:amd64 (1.3.5-2) ...
Setting up libexpat1:amd64 (2.2.6-2+deb10u3) ...
Setting up xdg-user-dirs (0.17-2) ...
Setting up libfile-fcntllock-perl (0.22-3+b5) ...
Setting up libalgorithm-diff-perl (1.19.03-2) ...
Setting up libglib2.0-0:amd64 (2.58.3-2+deb10u3) ...
No schema files found: doing nothing.
Setting up manpages (4.16-2) ...
Setting up binutils-common:amd64 (2.31.1-16) ...
Setting up linux-libc-dev:amd64 (4.19.208-1) ...
Setting up libnpth0:amd64 (1.6-1) ...
Setting up libassuan0:amd64 (2.5.2-1) ...
Setting up libgomp1:amd64 (8.3.0-6) ...
Setting up python3-xdg (0.25-5) ...
Setting up libpython3.7-minimal:amd64 (3.7.3-2+deb10u3) ...
Setting up python3-wheel (0.32.3-2) ...
Setting up libicu63:amd64 (63.1-6+deb10u2) ...
Setting up libfakeroot:amd64 (1.23-1) ...
Setting up fakeroot (1.23-1) ...
update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode
Setting up libasan5:amd64 (8.3.0-6) ...
Setting up libglib2.0-data (2.58.3-2+deb10u3) ...
Setting up make (4.2.1-1.2) ...
Setting up libmpfr6:amd64 (4.0.2-1) ...
Setting up gnupg-l10n (2.2.12-1+deb10u1) ...
Setting up libquadmath0:amd64 (8.3.0-6) ...
Setting up libmpc3:amd64 (1.1.0-1) ...
Setting up libatomic1:amd64 (8.3.0-6) ...
Setting up patch (2.7.6-3+deb10u1) ...
Setting up python3.7-minimal (3.7.3-2+deb10u3) ...
Setting up libdpkg-perl (1.19.7) ...
Setting up libmpx2:amd64 (8.3.0-6) ...
Setting up libubsan1:amd64 (8.3.0-6) ...
Setting up libisl19:amd64 (0.20-2) ...
Setting up gpgconf (2.2.12-1+deb10u1) ...
Setting up python3-crypto (2.6.1-9+b1) ...
Setting up libgirepository-1.0-1:amd64 (1.58.3-2) ...
Setting up python-pip-whl (18.1-5) ...
Setting up libbinutils:amd64 (2.31.1-16) ...
Setting up cpp-8 (8.3.0-6) ...
Setting up libc-dev-bin (2.28-10) ...
Setting up python3-lib2to3 (3.7.3-1) ...
Setting up libalgorithm-diff-xs-perl (0.04-5+b1) ...
Setting up libxml2:amd64 (2.9.4+dfsg1-7+deb10u2) ...
Setting up libcc1-0:amd64 (8.3.0-6) ...
Setting up gpg (2.2.12-1+deb10u1) ...
Setting up liblsan0:amd64 (8.3.0-6) ...
Setting up libitm1:amd64 (8.3.0-6) ...
Setting up libalgorithm-merge-perl (0.08-3) ...
Setting up gnupg-utils (2.2.12-1+deb10u1) ...
Setting up binutils-x86-64-linux-gnu (2.31.1-16) ...
Setting up libtsan0:amd64 (8.3.0-6) ...
Setting up python3-distutils (3.7.3-1) ...
Setting up dh-python (3.20190308) ...
Setting up pinentry-curses (1.1.0-2) ...
Setting up manpages-dev (4.16-2) ...
Setting up libpython3.7-stdlib:amd64 (3.7.3-2+deb10u3) ...
Setting up python3-dbus (1.2.8-3) ...
Setting up gpg-agent (2.2.12-1+deb10u1) ...
Setting up python3-setuptools (40.8.0-1) ...
Setting up libpython3.7:amd64 (3.7.3-2+deb10u3) ...
Setting up gpgsm (2.2.12-1+deb10u1) ...
Setting up binutils (2.31.1-16) ...
Setting up dpkg-dev (1.19.7) ...
Setting up dirmngr (2.2.12-1+deb10u1) ...
Setting up python3-secretstorage (2.3.1-2) ...
Setting up shared-mime-info (1.10-1) ...
Setting up gir1.2-glib-2.0:amd64 (1.58.3-2) ...
Setting up python3-pip (18.1-5) ...
Setting up libgcc-8-dev:amd64 (8.3.0-6) ...
Setting up gpg-wks-server (2.2.12-1+deb10u1) ...
Setting up cpp (4:8.3.0-1) ...
Setting up python3-keyrings.alt (3.1.1-1) ...
Setting up python3-keyring (17.1.1-1) ...
Setting up libc6-dev:amd64 (2.28-10) ...
Setting up libstdc++-8-dev:amd64 (8.3.0-6) ...
Setting up python3.7 (3.7.3-2+deb10u3) ...
Setting up gcc-8 (8.3.0-6) ...
Setting up gpg-wks-client (2.2.12-1+deb10u1) ...
Setting up gcc (4:8.3.0-1) ...
Setting up libexpat1-dev:amd64 (2.2.6-2+deb10u3) ...
Setting up python3-gi (3.30.4-1) ...
Setting up g++-8 (8.3.0-6) ...
Setting up gnupg (2.2.12-1+deb10u1) ...
Setting up libpython3.7-dev:amd64 (3.7.3-2+deb10u3) ...
Setting up python3.7-dev (3.7.3-2+deb10u3) ...
Setting up g++ (4:8.3.0-1) ...
update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode
Setting up build-essential (12.6) ...
Setting up libpython3-dev:amd64 (3.7.3-1) ...
Setting up python3-dev (3.7.3-1) ...
Processing triggers for libc-bin (2.28-10) ...
Processing triggers for man-db (2.8.5-2) ...
Processing triggers for mime-support (3.62) ...
root@jonny5isalive:~# pip3 install mkdocs-mermaid2-plugin
Collecting mkdocs-mermaid2-plugin
  Downloading https://files.pythonhosted.org/packages/b1/ee/4676f51373dcc5f16afd874d8b532d9a3917cda3aefb07dd9cbe9d64a727/mkdocs_mermaid2_plugin-0.5.2-py3-none-any.whl
Requirement already satisfied: pyyaml in /usr/lib/python3/dist-packages (from mkdocs-mermaid2-plugin) (3.13)
Collecting beautifulsoup4>=4.6.3 (from mkdocs-mermaid2-plugin)
  Downloading https://files.pythonhosted.org/packages/69/bf/f0f194d3379d3f3347478bd267f754fc68c11cbf2fe302a6ab69447b1417/beautifulsoup4-4.10.0-py3-none-any.whl (97kB)
    100% |████████████████████████████████| 102kB 2.1MB/s
Collecting mkdocs>=1.0.4 (from mkdocs-mermaid2-plugin)
  Downloading https://files.pythonhosted.org/packages/c0/26/fed4974c80000ef2c84185e426e8ef5340a27f1fdd3a2568c0547b2ae12a/mkdocs-1.2.3-py3-none-any.whl (6.4MB)
    100% |████████████████████████████████| 6.4MB 48kB/s
Collecting mkdocs-material (from mkdocs-mermaid2-plugin)
  Downloading https://files.pythonhosted.org/packages/1c/19/80b0861a9f1b25f9ca31f99d9f1ce7f44888c7150ac046cb21892d2710fb/mkdocs_material-8.2.3-py2.py3-none-any.whl (4.8MB)
    100% |████████████████████████████████| 4.9MB 64kB/s
Requirement already satisfied: setuptools>=18.5 in /usr/lib/python3/dist-packages (from mkdocs-mermaid2-plugin) (40.8.0)
Requirement already satisfied: requests in /usr/lib/python3/dist-packages (from mkdocs-mermaid2-plugin) (2.21.0)
Collecting pymdown-extensions>=8.0 (from mkdocs-mermaid2-plugin)
  Downloading https://files.pythonhosted.org/packages/17/01/431457b0b595ba1098744c40521ea4dd0511b71648946ee49e7d0e9272b6/pymdown_extensions-9.2-py3-none-any.whl (216kB)
    100% |████████████████████████████████| 225kB 1.2MB/s
Collecting jsbeautifier (from mkdocs-mermaid2-plugin)
  Downloading https://files.pythonhosted.org/packages/56/3a/4f3bdfa7e6c472d347a04f267faa55d2ff1a5ab993b63f0c2ead1cdfa512/jsbeautifier-1.14.0.tar.gz (73kB)
    100% |████████████████████████████████| 81kB 2.1MB/s
  Installing build dependencies ... done
Collecting soupsieve>1.2 (from beautifulsoup4>=4.6.3->mkdocs-mermaid2-plugin)
  Downloading https://files.pythonhosted.org/packages/72/a6/fd01694427f1c3fcadfdc5f1de901b813b9ac756f0806ef470cfed1de281/soupsieve-2.3.1-py3-none-any.whl
Collecting importlib-metadata>=3.10 (from mkdocs>=1.0.4->mkdocs-mermaid2-plugin)
  Downloading https://files.pythonhosted.org/packages/70/76/a44cce0f66f73ec6d5d8138f47a16cd3f9e57f4720bce7492d372ef5c74f/importlib_metadata-4.11.2-py3-none-any.whl
Collecting watchdog>=2.0 (from mkdocs>=1.0.4->mkdocs-mermaid2-plugin)
  Downloading https://files.pythonhosted.org/packages/e8/a8/fc4edd7d768361b00ea850e5310211d157df6b5a1db6148dd434e787d898/watchdog-2.1.6.tar.gz (107kB)
    100% |████████████████████████████████| 112kB 2.1MB/s
Collecting ghp-import>=1.0 (from mkdocs>=1.0.4->mkdocs-mermaid2-plugin)
  Downloading https://files.pythonhosted.org/packages/d5/42/a00220ae61d06b5bb288c0006bfd32bd61b4ae61adaef61fe8ad3a8ff9c3/ghp_import-2.0.2-py3-none-any.whl
Collecting mergedeep>=1.3.4 (from mkdocs>=1.0.4->mkdocs-mermaid2-plugin)
  Downloading https://files.pythonhosted.org/packages/2c/19/04f9b178c2d8a15b076c8b5140708fa6ffc5601fb6f1e975537072df5b2a/mergedeep-1.3.4-py3-none-any.whl
Collecting Jinja2>=2.10.1 (from mkdocs>=1.0.4->mkdocs-mermaid2-plugin)
  Downloading https://files.pythonhosted.org/packages/20/9a/e5d9ec41927401e41aea8af6d16e78b5e612bca4699d417f646a9610a076/Jinja2-3.0.3-py3-none-any.whl (133kB)
    100% |████████████████████████████████| 143kB 1.7MB/s
Collecting pyyaml-env-tag>=0.1 (from mkdocs>=1.0.4->mkdocs-mermaid2-plugin)
  Downloading https://files.pythonhosted.org/packages/5a/66/bbb1dd374f5c870f59c5bb1db0e18cbe7fa739415a24cbd95b2d1f5ae0c4/pyyaml_env_tag-0.1-py3-none-any.whl
Collecting Markdown>=3.2.1 (from mkdocs>=1.0.4->mkdocs-mermaid2-plugin)
  Downloading https://files.pythonhosted.org/packages/9f/d4/2c7f83915d437736996b2674300c6c4b578a6f897f34e40f5c04db146719/Markdown-3.3.6-py3-none-any.whl (97kB)
    100% |████████████████████████████████| 102kB 6.7MB/s
Collecting packaging>=20.5 (from mkdocs>=1.0.4->mkdocs-mermaid2-plugin)
  Downloading https://files.pythonhosted.org/packages/05/8e/8de486cbd03baba4deef4142bd643a3e7bbe954a784dc1bb17142572d127/packaging-21.3-py3-none-any.whl (40kB)
    100% |████████████████████████████████| 40kB 2.1MB/s
Collecting click>=3.3 (from mkdocs>=1.0.4->mkdocs-mermaid2-plugin)
  Downloading https://files.pythonhosted.org/packages/4a/a8/0b2ced25639fb20cc1c9784de90a8c25f9504a7f18cd8b5397bd61696d7d/click-8.0.4-py3-none-any.whl (97kB)
    100% |████████████████████████████████| 102kB 2.0MB/s
Collecting mkdocs-material-extensions>=1.0 (from mkdocs-material->mkdocs-mermaid2-plugin)
  Downloading https://files.pythonhosted.org/packages/cc/f5/cc42642eb7bb4f8df06c058ea9a7e45f3be141851845ee77ff8eeb16e86b/mkdocs_material_extensions-1.0.3-py3-none-any.whl
Collecting pygments>=2.10 (from mkdocs-material->mkdocs-mermaid2-plugin)
  Downloading https://files.pythonhosted.org/packages/1d/17/ed4d2df187995561b28f1073df24137cb750e12f9879d291cc8ab67c65d2/Pygments-2.11.2-py3-none-any.whl (1.1MB)
    100% |████████████████████████████████| 1.1MB 283kB/s
Collecting six>=1.13.0 (from jsbeautifier->mkdocs-mermaid2-plugin)
  Downloading https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl
Collecting editorconfig>=0.12.2 (from jsbeautifier->mkdocs-mermaid2-plugin)
  Downloading https://files.pythonhosted.org/packages/4e/04/e8a79c1db0c55ef03d53c05c61d06c4d6d3be37ef84e5400ce36b4a0fbe9/EditorConfig-0.12.3-py3-none-any.whl
Collecting zipp>=0.5 (from importlib-metadata>=3.10->mkdocs>=1.0.4->mkdocs-mermaid2-plugin)
  Downloading https://files.pythonhosted.org/packages/52/c5/df7953fe6065185af5956265e3b16f13c2826c2b1ba23d43154f3af453bc/zipp-3.7.0-py3-none-any.whl
Collecting typing-extensions>=3.6.4; python_version < "3.8" (from importlib-metadata>=3.10->mkdocs>=1.0.4->mkdocs-mermaid2-plugin)
  Downloading https://files.pythonhosted.org/packages/45/6b/44f7f8f1e110027cf88956b59f2fad776cca7e1704396d043f89effd3a0e/typing_extensions-4.1.1-py3-none-any.whl
Collecting python-dateutil>=2.8.1 (from ghp-import>=1.0->mkdocs>=1.0.4->mkdocs-mermaid2-plugin)
  Downloading https://files.pythonhosted.org/packages/36/7a/87837f39d0296e723bb9b62bbb257d0355c7f6128853c78955f57342a56d/python_dateutil-2.8.2-py2.py3-none-any.whl (247kB)
    100% |████████████████████████████████| 256kB 1.1MB/s
Collecting MarkupSafe>=2.0 (from Jinja2>=2.10.1->mkdocs>=1.0.4->mkdocs-mermaid2-plugin)
  Downloading https://files.pythonhosted.org/packages/62/0f/52c009332fdadd484e898dc8f2acca0663c1031b3517070fd34ad9c1b64e/MarkupSafe-2.1.0.tar.gz
Collecting pyparsing!=3.0.5,>=2.0.2 (from packaging>=20.5->mkdocs>=1.0.4->mkdocs-mermaid2-plugin)
  Downloading https://files.pythonhosted.org/packages/80/c1/23fd82ad3121656b585351aba6c19761926bb0db2ebed9e4ff09a43a3fcc/pyparsing-3.0.7-py3-none-any.whl (98kB)
    100% |████████████████████████████████| 102kB 2.5MB/s
Building wheels for collected packages: jsbeautifier, watchdog, MarkupSafe
  Running setup.py bdist_wheel for jsbeautifier ... done
  Stored in directory: /root/.cache/pip/wheels/64/05/b2/46615b05d25b9f29918958f86981c4e1ee21b0c6272f326eec
  Running setup.py bdist_wheel for watchdog ... done
  Stored in directory: /root/.cache/pip/wheels/36/b4/79/01582c20f4baa301ee1d3392aaa024ab2c9e2be6cfd136bbe0
  Running setup.py bdist_wheel for MarkupSafe ... done
  Stored in directory: /root/.cache/pip/wheels/57/5b/c9/18e0a3bca98e7cfaec446b1c335405791168d5ac46553fdee5
Successfully built jsbeautifier watchdog MarkupSafe
Installing collected packages: soupsieve, beautifulsoup4, zipp, typing-extensions, importlib-metadata, watchdog, six, python-dateutil, ghp-import, mergedeep, MarkupSafe, Jinja2, pyyaml-env-tag, Markdown, pyparsing, packaging, click, mkdocs, mkdocs-material-extensions, pygments, pymdown-extensions, mkdocs-material, editorconfig, jsbeautifier, mkdocs-mermaid2-plugin
  Found existing installation: six 1.12.0
    Not uninstalling six at /usr/lib/python3/dist-packages, outside environment /usr
    Can't uninstall 'six'. No files were found to uninstall.
  Found existing installation: MarkupSafe 1.1.0
    Not uninstalling markupsafe at /usr/lib/python3/dist-packages, outside environment /usr
    Can't uninstall 'MarkupSafe'. No files were found to uninstall.
  Found existing installation: Jinja2 2.10
    Not uninstalling jinja2 at /usr/lib/python3/dist-packages, outside environment /usr
    Can't uninstall 'Jinja2'. No files were found to uninstall.
Successfully installed Jinja2-3.0.3 Markdown-3.3.6 MarkupSafe-2.1.0 beautifulsoup4-4.10.0 click-8.0.4 editorconfig-0.12.3 ghp-import-2.0.2 importlib-metadata-4.11.2 jsbeautifier-1.14.0 mergedeep-1.3.4 mkdocs-1.2.3 mkdocs-material-8.2.3 mkdocs-material-extensions-1.0.3 mkdocs-mermaid2-plugin-0.5.2 packaging-21.3 pygments-2.11.2 pymdown-extensions-9.2 pyparsing-3.0.7 python-dateutil-2.8.2 pyyaml-env-tag-0.1 six-1.16.0 soupsieve-2.3.1 typing-extensions-4.1.1 watchdog-2.1.6 zipp-3.7.0
root@jonny5isalive:~#

and with the Python.org MacOS installer Python

~/gits/joyent/ops-sop 🂁 /usr/local/bin/pip3 install mkdocs-mermaid2-plugin
Collecting mkdocs-mermaid2-plugin
  Using cached mkdocs_mermaid2_plugin-0.5.2-py3-none-any.whl (8.7 kB)
Collecting requests
  Using cached requests-2.27.1-py2.py3-none-any.whl (63 kB)
Collecting beautifulsoup4>=4.6.3
  Using cached beautifulsoup4-4.10.0-py3-none-any.whl (97 kB)
Collecting pyyaml
  Downloading PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl (197 kB)
     |████████████████████████████████| 197 kB 4.4 MB/s
Collecting mkdocs-material
  Downloading mkdocs_material-8.2.4-py2.py3-none-any.whl (4.8 MB)
     |████████████████████████████████| 4.8 MB 30.3 MB/s
Collecting mkdocs>=1.0.4
  Using cached mkdocs-1.2.3-py3-none-any.whl (6.4 MB)
Collecting pymdown-extensions>=8.0
  Using cached pymdown_extensions-9.2-py3-none-any.whl (216 kB)
Requirement already satisfied: setuptools>=18.5 in /Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages (from mkdocs-mermaid2-plugin) (58.1.0)
Collecting jsbeautifier
  Using cached jsbeautifier-1.14.0.tar.gz (73 kB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... done
Collecting soupsieve>1.2
  Using cached soupsieve-2.3.1-py3-none-any.whl (37 kB)
Collecting Jinja2>=2.10.1
  Using cached Jinja2-3.0.3-py3-none-any.whl (133 kB)
Collecting packaging>=20.5
  Using cached packaging-21.3-py3-none-any.whl (40 kB)
Collecting mergedeep>=1.3.4
  Using cached mergedeep-1.3.4-py3-none-any.whl (6.4 kB)
Collecting pyyaml-env-tag>=0.1
  Using cached pyyaml_env_tag-0.1-py3-none-any.whl (3.9 kB)
Collecting watchdog>=2.0
  Downloading watchdog-2.1.6-cp310-cp310-macosx_10_9_x86_64.whl (85 kB)
     |████████████████████████████████| 85 kB 14.6 MB/s
Collecting Markdown>=3.2.1
  Using cached Markdown-3.3.6-py3-none-any.whl (97 kB)
Collecting importlib-metadata>=3.10
  Using cached importlib_metadata-4.11.2-py3-none-any.whl (17 kB)
Collecting ghp-import>=1.0
  Using cached ghp_import-2.0.2-py3-none-any.whl (11 kB)
Collecting click>=3.3
  Using cached click-8.0.4-py3-none-any.whl (97 kB)
Collecting python-dateutil>=2.8.1
  Using cached python_dateutil-2.8.2-py2.py3-none-any.whl (247 kB)
Collecting zipp>=0.5
  Using cached zipp-3.7.0-py3-none-any.whl (5.3 kB)
Collecting MarkupSafe>=2.0
  Downloading MarkupSafe-2.1.0-cp310-cp310-macosx_10_9_x86_64.whl (13 kB)
Collecting pyparsing!=3.0.5,>=2.0.2
  Using cached pyparsing-3.0.7-py3-none-any.whl (98 kB)
Collecting six>=1.5
  Using cached six-1.16.0-py2.py3-none-any.whl (11 kB)
Collecting editorconfig>=0.12.2
  Using cached EditorConfig-0.12.3-py3-none-any.whl (16 kB)
Collecting pygments>=2.10
  Using cached Pygments-2.11.2-py3-none-any.whl (1.1 MB)
Collecting mkdocs-material-extensions>=1.0
  Using cached mkdocs_material_extensions-1.0.3-py3-none-any.whl (8.1 kB)
Collecting urllib3<1.27,>=1.21.1
  Using cached urllib3-1.26.8-py2.py3-none-any.whl (138 kB)
Collecting charset-normalizer~=2.0.0
  Using cached charset_normalizer-2.0.12-py3-none-any.whl (39 kB)
Collecting idna<4,>=2.5
  Using cached idna-3.3-py3-none-any.whl (61 kB)
Collecting certifi>=2017.4.17
  Using cached certifi-2021.10.8-py2.py3-none-any.whl (149 kB)
Building wheels for collected packages: jsbeautifier
  Building wheel for jsbeautifier (PEP 517) ... done
  Created wheel for jsbeautifier: filename=jsbeautifier-1.14.0-py3-none-any.whl size=91970 sha256=df222cfba9d747ad33a5a374d3dc4b169428d320a0be47ff288c3f6d69003b7e
  Stored in directory: /Users/michaelhicks/Library/Caches/pip/wheels/41/76/91/43d0eb201fc1adc727a88dbd3e7ab6c77894c453c0abac9bd7
Successfully built jsbeautifier
Installing collected packages: six, zipp, pyyaml, python-dateutil, pyparsing, MarkupSafe, watchdog, pyyaml-env-tag, packaging, mergedeep, Markdown, Jinja2, importlib-metadata, ghp-import, click, urllib3, soupsieve, pymdown-extensions, pygments, mkdocs-material-extensions, mkdocs, idna, editorconfig, charset-normalizer, certifi, requests, mkdocs-material, jsbeautifier, beautifulsoup4, mkdocs-mermaid2-plugin
Successfully installed Jinja2-3.0.3 Markdown-3.3.6 MarkupSafe-2.1.0 beautifulsoup4-4.10.0 certifi-2021.10.8 charset-normalizer-2.0.12 click-8.0.4 editorconfig-0.12.3 ghp-import-2.0.2 idna-3.3 importlib-metadata-4.11.2 jsbeautifier-1.14.0 mergedeep-1.3.4 mkdocs-1.2.3 mkdocs-material-8.2.4 mkdocs-material-extensions-1.0.3 mkdocs-mermaid2-plugin-0.5.2 packaging-21.3 pygments-2.11.2 pymdown-extensions-9.2 pyparsing-3.0.7 python-dateutil-2.8.2 pyyaml-6.0 pyyaml-env-tag-0.1 requests-2.27.1 six-1.16.0 soupsieve-2.3.1 urllib3-1.26.8 watchdog-2.1.6 zipp-3.7.0
WARNING: You are using pip version 21.2.4; however, version 22.0.3 is available.
You should consider upgrading via the '/Library/Frameworks/Python.framework/Versions/3.10/bin/python3.10 -m pip install --upgrade pip' command.

I'm not sure if its related to the macports bug fix for python39 @3.9.0, python38 @3.8.7, python37 @3.7.10, python36 @3.6.13: +universal does not work with longer than normal CFLAGS https://trac.macports.org/ticket/61282

or something unique to the pkgsrc build

0-wiz-0 commented 2 years ago

There's two bugs here, I think, one in virtualenv and and one in pip. Please try the following workaround, adapted to your python version:

cd virtualenv
cp /usr/pkg/lib/python3.10/site-packages/_distutils_system_mod.py lib/python3.10/site-packages 
pip install --no-build-isolation WHATEVER

The cp works around the problem in virtualenv, and the '--no-build-isolation' works around the bug in pip.