Unable to install PyQt6 on the jetson nano

Hello im attempting to install pyqt6 on the nano, but it is unable to locate the package in apt and pip. Im running Jetpack 4.6.3. I already have pyqt5 but im unable to install pyqt6 on the nano. Is the nano incompatible with pyqt6?

jetson@jetson-desktop:~$ pip3 install pyqt6
Collecting pyqt6
  Using cached https://files.pythonhosted.org/packages/8c/2b/6fe0409501798abc780a70cab48c39599742ab5a8168e682107eaab78fca/PyQt6-6.6.1.tar.gz
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/usr/lib/python3.6/tokenize.py", line 452, in open
        buffer = _builtin_open(filename, 'rb')
    FileNotFoundError: [Errno 2] No such file or directory: '/tmp/pip-build-rig_kyx_/pyqt6/setup.py'

    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-rig_kyx_/pyqt6/
jetson@jetson-desktop:~$ sudo apt install python3-pyqt6
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package python3-pyqt6
jetson@jetson-desktop:~$ sudo apt update
Hit:1 http://ports.ubuntu.com/ubuntu-ports bionic InRelease
Hit:2 http://ppa.launchpad.net/deadsnakes/ppa/ubuntu bionic InRelease
Hit:3 http://ports.ubuntu.com/ubuntu-ports bionic-updates InRelease
Hit:4 http://ports.ubuntu.com/ubuntu-ports bionic-backports InRelease
Hit:5 http://ports.ubuntu.com/ubuntu-ports bionic-security InRelease
Get:6 https://repo.download.nvidia.com/jetson/common r32.7 InRelease [2,555 B]
Get:7 https://repo.download.nvidia.com/jetson/t210 r32.7 InRelease [2,553 B]
Fetched 5,108 B in 3s (1,970 B/s)
Reading package lists... Done
Building dependency tree
Reading state information... Done
224 packages can be upgraded. Run 'apt list --upgradable' to see them.
jetson@jetson-desktop:~$ sudo apt install python3-pyqt6
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package python3-pyqt6
jetson@jetson-desktop:~$ sudo add-apt-repository universe
'universe' distribution component is already enabled for all sources.
jetson@jetson-desktop:~$ sudo apt-get update
Get:1 https://repo.download.nvidia.com/jetson/common r32.7 InRelease [2,555 B]
Get:2 https://repo.download.nvidia.com/jetson/t210 r32.7 InRelease [2,553 B]
Hit:3 http://ports.ubuntu.com/ubuntu-ports bionic InRelease
Hit:4 http://ports.ubuntu.com/ubuntu-ports bionic-updates InRelease
Hit:5 http://ports.ubuntu.com/ubuntu-ports bionic-backports InRelease
Hit:6 http://ppa.launchpad.net/deadsnakes/ppa/ubuntu bionic InRelease
Hit:7 http://ports.ubuntu.com/ubuntu-ports bionic-security InRelease
Fetched 5,108 B in 2s (2,748 B/s)
Reading package lists... Done
jetson@jetson-desktop:~$

I have also tried several solutions from googling (Couldnt find the exact error) but none of them worked and the error remains the same FileNotFoundError: [Errno 2] No such file or directory: '/tmp/pip-build-rig_kyx_/pyqt6/setup.py'

Hi thesis.finals333,

Did you try upgrading pip?

pip3 install --upgrade pip 

Or maybe the package is broken, you might be able to download the source from Github or wherever the source code is stored, and then you can try package it yourself.

Best,

Juan Diego Delgado
Embedded SW Engineer at RidgeRun
Contact us: support@ridgerun.com
Developers wiki: https://developer.ridgerun.com
Website: www.ridgerun.com

I could have sworn that i did this yesterday and it gave me the same error, I tried doing it again today i got a different error:

It is possible to run PyQt6 on the nano correct? maybe im chasing something that is incompatible in the first place.

jetson@jetson-desktop:~$ pip3 install --upgrade pip
Collecting pip
  Downloading https://files.pythonhosted.org/packages/a4/6d/6463d49a933f547439d6b5b98b46af8742cc03ae83543e4d7688c2420f8b/pip-21.3.1-py3-none-any.whl (1.7MB)
    100% |████████████████████████████████| 1.7MB 291kB/s
Installing collected packages: pip
Successfully installed pip-21.3.1
jetson@jetson-desktop:~$ pip3 install pyqt6
WARNING: pip is being invoked by an old script wrapper. This will fail in a future version of pip.
Please see https://github.com/pypa/pip/issues/5599 for advice on fixing the underlying issue.
To avoid this problem you can invoke Python with '-m pip' instead of running pip directly.
Defaulting to user installation because normal site-packages is not writeable
Collecting pyqt6
  Using cached PyQt6-6.6.1.tar.gz (1.0 MB)
  Installing build dependencies ... error
  ERROR: Command errored out with exit status 1:
   command: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip install --ignore-installed --no-user --prefix /tmp/pip-build-env-89u2b1tx/overlay --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'sip >=6.5, <7' 'PyQt-builder >=1.15, <2'
       cwd: None
  Complete output (10 lines):
  Collecting sip<7,>=6.5
    Using cached sip-6.5.1.tar.gz (1.2 MB)
    Installing build dependencies: started
    Installing build dependencies: finished with status 'done'
    Getting requirements to build wheel: started
    Getting requirements to build wheel: finished with status 'done'
    Preparing metadata (pyproject.toml): started
    Preparing metadata (pyproject.toml): finished with status 'done'
  ERROR: Could not find a version that satisfies the requirement PyQt-builder<2,>=1.15 (from versions: 1.0.0, 1.0.1, 1.1.0, 1.2.0, 1.3.0, 1.3.1, 1.3.2, 1.4.0, 1.5.0, 1.6.0, 1.7.0, 1.8.0, 1.9.0, 1.9.1, 1.10.0, 1.10.1, 1.10.2, 1.10.3, 1.11.0, 1.12.0, 1.12.1, 1.12.2)
  ERROR: No matching distribution found for PyQt-builder<2,>=1.15
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/8c/2b/6fe0409501798abc780a70cab48c39599742ab5a8168e682107eaab78fca/PyQt6-6.6.1.tar.gz#sha256=9f158aa29d205142c56f0f35d07784b8df0be28378d20a97bcda8bd64ffd0379 (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip install --ignore-installed --no-user --prefix /tmp/pip-build-env-89u2b1tx/overlay --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'sip >=6.5, <7' 'PyQt-builder >=1.15, <2' Check the logs for full command output.
  Downloading PyQt6-6.6.0.tar.gz (1.0 MB)
     |████████████████████████████████| 1.0 MB 10.2 MB/s
  Installing build dependencies ... error
  ERROR: Command errored out with exit status 1:
   command: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip install --ignore-installed --no-user --prefix /tmp/pip-build-env-7g0i6tp0/overlay --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'sip >=6.5, <7' 'PyQt-builder >=1.15, <2'
       cwd: None
  Complete output (10 lines):
  Collecting sip<7,>=6.5
    Using cached sip-6.5.1.tar.gz (1.2 MB)
    Installing build dependencies: started
    Installing build dependencies: finished with status 'done'
    Getting requirements to build wheel: started
    Getting requirements to build wheel: finished with status 'done'
    Preparing metadata (pyproject.toml): started
    Preparing metadata (pyproject.toml): finished with status 'done'
  ERROR: Could not find a version that satisfies the requirement PyQt-builder<2,>=1.15 (from versions: 1.0.0, 1.0.1, 1.1.0, 1.2.0, 1.3.0, 1.3.1, 1.3.2, 1.4.0, 1.5.0, 1.6.0, 1.7.0, 1.8.0, 1.9.0, 1.9.1, 1.10.0, 1.10.1, 1.10.2, 1.10.3, 1.11.0, 1.12.0, 1.12.1, 1.12.2)
  ERROR: No matching distribution found for PyQt-builder<2,>=1.15
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/17/dc/969e2da415597b328e6a73dc233f9bb4f2b312889180e9bbe48470c957e7/PyQt6-6.6.0.tar.gz#sha256=d41512d66044c2df9c5f515a56a922170d68a37b3406ffddc8b4adc57181b576 (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip install --ignore-installed --no-user --prefix /tmp/pip-build-env-7g0i6tp0/overlay --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'sip >=6.5, <7' 'PyQt-builder >=1.15, <2' Check the logs for full command output.
  Downloading PyQt6-6.5.3.tar.gz (1.0 MB)
     |████████████████████████████████| 1.0 MB 23.4 MB/s
  Installing build dependencies ... error
  ERROR: Command errored out with exit status 1:
   command: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip install --ignore-installed --no-user --prefix /tmp/pip-build-env-a8hzl3qs/overlay --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'sip >=6.5, <7' 'PyQt-builder >=1.15, <2'
       cwd: None
  Complete output (10 lines):
  Collecting sip<7,>=6.5
    Using cached sip-6.5.1.tar.gz (1.2 MB)
    Installing build dependencies: started
    Installing build dependencies: finished with status 'done'
    Getting requirements to build wheel: started
    Getting requirements to build wheel: finished with status 'done'
    Preparing metadata (pyproject.toml): started
    Preparing metadata (pyproject.toml): finished with status 'done'
  ERROR: Could not find a version that satisfies the requirement PyQt-builder<2,>=1.15 (from versions: 1.0.0, 1.0.1, 1.1.0, 1.2.0, 1.3.0, 1.3.1, 1.3.2, 1.4.0, 1.5.0, 1.6.0, 1.7.0, 1.8.0, 1.9.0, 1.9.1, 1.10.0, 1.10.1, 1.10.2, 1.10.3, 1.11.0, 1.12.0, 1.12.1, 1.12.2)
  ERROR: No matching distribution found for PyQt-builder<2,>=1.15
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/18/b8/74667c8108d8481b87f8d87e6d962b64eb53ea21432cdbfbfeee4d2b4430/PyQt6-6.5.3.tar.gz#sha256=bcbbf9511b038b4924298ca10999aa36eb37a0a38d0638f895f9bba6025c0a77 (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip install --ignore-installed --no-user --prefix /tmp/pip-build-env-a8hzl3qs/overlay --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'sip >=6.5, <7' 'PyQt-builder >=1.15, <2' Check the logs for full command output.
  Downloading PyQt6-6.5.2.tar.gz (1.0 MB)
     |████████████████████████████████| 1.0 MB 16.9 MB/s
  Installing build dependencies ... error
  ERROR: Command errored out with exit status 1:
   command: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip install --ignore-installed --no-user --prefix /tmp/pip-build-env-x418unp3/overlay --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'sip >=6.5, <7' 'PyQt-builder >=1.15, <2'
       cwd: None
  Complete output (10 lines):
  Collecting sip<7,>=6.5
    Using cached sip-6.5.1.tar.gz (1.2 MB)
    Installing build dependencies: started
    Installing build dependencies: finished with status 'done'
    Getting requirements to build wheel: started
    Getting requirements to build wheel: finished with status 'done'
    Preparing metadata (pyproject.toml): started
    Preparing metadata (pyproject.toml): finished with status 'done'
  ERROR: Could not find a version that satisfies the requirement PyQt-builder<2,>=1.15 (from versions: 1.0.0, 1.0.1, 1.1.0, 1.2.0, 1.3.0, 1.3.1, 1.3.2, 1.4.0, 1.5.0, 1.6.0, 1.7.0, 1.8.0, 1.9.0, 1.9.1, 1.10.0, 1.10.1, 1.10.2, 1.10.3, 1.11.0, 1.12.0, 1.12.1, 1.12.2)
  ERROR: No matching distribution found for PyQt-builder<2,>=1.15
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/34/da/e03b7264b1e88cd553ff62a71c0c19f55690e08928130f4aae613723e535/PyQt6-6.5.2.tar.gz#sha256=1487ee7350f9ffb66d60ab4176519252c2b371762cbe8f8340fd951f63801280 (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip install --ignore-installed --no-user --prefix /tmp/pip-build-env-x418unp3/overlay --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'sip >=6.5, <7' 'PyQt-builder >=1.15, <2' Check the logs for full command output.
  Downloading PyQt6-6.5.1.tar.gz (1.0 MB)
     |████████████████████████████████| 1.0 MB 17.6 MB/s
  Installing build dependencies ... error
  ERROR: Command errored out with exit status 1:
   command: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip install --ignore-installed --no-user --prefix /tmp/pip-build-env-u7r99cu6/overlay --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'sip >=6.5, <7' 'PyQt-builder >=1.15, <2'
       cwd: None
  Complete output (10 lines):
  Collecting sip<7,>=6.5
    Using cached sip-6.5.1.tar.gz (1.2 MB)
    Installing build dependencies: started
    Installing build dependencies: finished with status 'done'
    Getting requirements to build wheel: started
    Getting requirements to build wheel: finished with status 'done'
    Preparing metadata (pyproject.toml): started
    Preparing metadata (pyproject.toml): finished with status 'done'
  ERROR: Could not find a version that satisfies the requirement PyQt-builder<2,>=1.15 (from versions: 1.0.0, 1.0.1, 1.1.0, 1.2.0, 1.3.0, 1.3.1, 1.3.2, 1.4.0, 1.5.0, 1.6.0, 1.7.0, 1.8.0, 1.9.0, 1.9.1, 1.10.0, 1.10.1, 1.10.2, 1.10.3, 1.11.0, 1.12.0, 1.12.1, 1.12.2)
  ERROR: No matching distribution found for PyQt-builder<2,>=1.15
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/1c/77/3b14889ac1e677bd5a284e0d003cac873689046e328401d92a927c9cc921/PyQt6-6.5.1.tar.gz#sha256=e166a0568c27bcc8db00271a5043936226690b6a4a74ce0a5caeb408040a97c3 (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip install --ignore-installed --no-user --prefix /tmp/pip-build-env-u7r99cu6/overlay --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'sip >=6.5, <7' 'PyQt-builder >=1.15, <2' Check the logs for full command output.
  Downloading PyQt6-6.5.0.tar.gz (1.0 MB)
     |████████████████████████████████| 1.0 MB 20.4 MB/s
  Installing build dependencies ... error
  ERROR: Command errored out with exit status 1:
   command: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip install --ignore-installed --no-user --prefix /tmp/pip-build-env-aro30akp/overlay --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'sip >=6.5, <7' 'PyQt-builder >=1.15, <2'
       cwd: None
  Complete output (10 lines):
  Collecting sip<7,>=6.5
    Using cached sip-6.5.1.tar.gz (1.2 MB)
    Installing build dependencies: started
    Installing build dependencies: finished with status 'done'
    Getting requirements to build wheel: started
    Getting requirements to build wheel: finished with status 'done'
    Preparing metadata (pyproject.toml): started
    Preparing metadata (pyproject.toml): finished with status 'done'
  ERROR: Could not find a version that satisfies the requirement PyQt-builder<2,>=1.15 (from versions: 1.0.0, 1.0.1, 1.1.0, 1.2.0, 1.3.0, 1.3.1, 1.3.2, 1.4.0, 1.5.0, 1.6.0, 1.7.0, 1.8.0, 1.9.0, 1.9.1, 1.10.0, 1.10.1, 1.10.2, 1.10.3, 1.11.0, 1.12.0, 1.12.1, 1.12.2)
  ERROR: No matching distribution found for PyQt-builder<2,>=1.15
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/28/01/9e4b91cb0c1023934b1dc654c5bbfc29cbabcbf6092f936b74aee46dd637/PyQt6-6.5.0.tar.gz#sha256=b97cb4be9b2c8997904ea668cf3b0a4ae5822196f7792590d05ecde6216a9fbc (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip install --ignore-installed --no-user --prefix /tmp/pip-build-env-aro30akp/overlay --no-warn-script-location --no-binary :none: --only-binary :none: -i https://pypi.org/simple -- 'sip >=6.5, <7' 'PyQt-builder >=1.15, <2' Check the logs for full command output.
  Downloading PyQt6-6.4.2.tar.gz (1.0 MB)
     |████████████████████████████████| 1.0 MB 18.4 MB/s
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... error
  ERROR: Command errored out with exit status 1:
   command: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py prepare_metadata_for_build_wheel /tmp/tmpurxzqb0l
       cwd: /tmp/pip-install-32n64tae/pyqt6_6a31ff27551e418186b3901cb6195c87
  Complete output (35 lines):
  Querying qmake about your Qt installation...
  /usr/bin/qmake -query
  Traceback (most recent call last):
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 156, in prepare_metadata_for_build_wheel
      hook = backend.prepare_metadata_for_build_wheel
  AttributeError: module 'sipbuild.api' has no attribute 'prepare_metadata_for_build_wheel'

  During handling of the above exception, another exception occurred:

  Traceback (most recent call last):
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 363, in <module>
      main()
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 345, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 160, in prepare_metadata_for_build_wheel
      whl_basename = backend.build_wheel(metadata_directory, config_settings)
    File "/tmp/pip-build-env-mkoru0tu/overlay/lib/python3.6/site-packages/sipbuild/api.py", line 51, in build_wheel
      project = AbstractProject.bootstrap('pep517')
    File "/tmp/pip-build-env-mkoru0tu/overlay/lib/python3.6/site-packages/sipbuild/abstract_project.py", line 83, in bootstrap
      project.setup(pyproject, tool, tool_description)
    File "/tmp/pip-build-env-mkoru0tu/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 594, in setup
      self.apply_user_defaults(tool)
    File "project.py", line 65, in apply_user_defaults
      super().apply_user_defaults(tool)
    File "/tmp/pip-build-env-mkoru0tu/overlay/lib/python3.6/site-packages/pyqtbuild/project.py", line 70, in apply_user_defaults
      super().apply_user_defaults(tool)
    File "/tmp/pip-build-env-mkoru0tu/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 241, in apply_user_defaults
      self.builder.apply_user_defaults(tool)
    File "/tmp/pip-build-env-mkoru0tu/overlay/lib/python3.6/site-packages/pyqtbuild/builder.py", line 76, in apply_user_defaults
      self._get_qt_configuration()
    File "/tmp/pip-build-env-mkoru0tu/overlay/lib/python3.6/site-packages/pyqtbuild/builder.py", line 495, in _get_qt_configuration
      for line in project.read_command_pipe([self.qmake, '-query']):
    File "/tmp/pip-build-env-mkoru0tu/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 558, in read_command_pipe
      "'{0}' failed returning {1}".format(cmd, pipe.returncode))
  sipbuild.exceptions.UserException
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/c3/e0/e1b592a6253712721612e2e64a323930a724e1f5cf297ed5ec6d6c86dda1/PyQt6-6.4.2.tar.gz#sha256=740244f608fe15ee1d89695c43f31a14caeca41c4f02ac36c86dfba4a5d5813d (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py prepare_metadata_for_build_wheel /tmp/tmpurxzqb0l Check the logs for full command output.
  Downloading PyQt6-6.4.1.tar.gz (1.0 MB)
     |████████████████████████████████| 1.0 MB 17.6 MB/s
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... error
  ERROR: Command errored out with exit status 1:
   command: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py prepare_metadata_for_build_wheel /tmp/tmp3l49o7x3
       cwd: /tmp/pip-install-32n64tae/pyqt6_531642ee35904e3d975c3698d8fb2c7e
  Complete output (35 lines):
  Querying qmake about your Qt installation...
  /usr/bin/qmake -query
  Traceback (most recent call last):
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 156, in prepare_metadata_for_build_wheel
      hook = backend.prepare_metadata_for_build_wheel
  AttributeError: module 'sipbuild.api' has no attribute 'prepare_metadata_for_build_wheel'

  During handling of the above exception, another exception occurred:

  Traceback (most recent call last):
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 363, in <module>
      main()
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 345, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 160, in prepare_metadata_for_build_wheel
      whl_basename = backend.build_wheel(metadata_directory, config_settings)
    File "/tmp/pip-build-env-dgogbkyq/overlay/lib/python3.6/site-packages/sipbuild/api.py", line 51, in build_wheel
      project = AbstractProject.bootstrap('pep517')
    File "/tmp/pip-build-env-dgogbkyq/overlay/lib/python3.6/site-packages/sipbuild/abstract_project.py", line 83, in bootstrap
      project.setup(pyproject, tool, tool_description)
    File "/tmp/pip-build-env-dgogbkyq/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 594, in setup
      self.apply_user_defaults(tool)
    File "project.py", line 65, in apply_user_defaults
      super().apply_user_defaults(tool)
    File "/tmp/pip-build-env-dgogbkyq/overlay/lib/python3.6/site-packages/pyqtbuild/project.py", line 70, in apply_user_defaults
      super().apply_user_defaults(tool)
    File "/tmp/pip-build-env-dgogbkyq/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 241, in apply_user_defaults
      self.builder.apply_user_defaults(tool)
    File "/tmp/pip-build-env-dgogbkyq/overlay/lib/python3.6/site-packages/pyqtbuild/builder.py", line 76, in apply_user_defaults
      self._get_qt_configuration()
    File "/tmp/pip-build-env-dgogbkyq/overlay/lib/python3.6/site-packages/pyqtbuild/builder.py", line 495, in _get_qt_configuration
      for line in project.read_command_pipe([self.qmake, '-query']):
    File "/tmp/pip-build-env-dgogbkyq/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 558, in read_command_pipe
      "'{0}' failed returning {1}".format(cmd, pipe.returncode))
  sipbuild.exceptions.UserException
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/8a/a6/12565a8b14faaeb3ecf3edb5bc1e6bcb622dab776c23ea4eb4c369176c75/PyQt6-6.4.1.tar.gz#sha256=0c1dcadf161331cfdbde0906c05f7f8048dc4907d717647c33bbc4404146f59f (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py prepare_metadata_for_build_wheel /tmp/tmp3l49o7x3 Check the logs for full command output.
  Downloading PyQt6-6.4.0.tar.gz (1.0 MB)
     |████████████████████████████████| 1.0 MB 5.7 MB/s
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... error
  ERROR: Command errored out with exit status 1:
   command: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py prepare_metadata_for_build_wheel /tmp/tmphiu65xi5
       cwd: /tmp/pip-install-32n64tae/pyqt6_012fc39e2db8444dac1e2227beffdd97
  Complete output (35 lines):
  Querying qmake about your Qt installation...
  /usr/bin/qmake -query
  Traceback (most recent call last):
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 156, in prepare_metadata_for_build_wheel
      hook = backend.prepare_metadata_for_build_wheel
  AttributeError: module 'sipbuild.api' has no attribute 'prepare_metadata_for_build_wheel'

  During handling of the above exception, another exception occurred:

  Traceback (most recent call last):
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 363, in <module>
      main()
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 345, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 160, in prepare_metadata_for_build_wheel
      whl_basename = backend.build_wheel(metadata_directory, config_settings)
    File "/tmp/pip-build-env-xn08oqsd/overlay/lib/python3.6/site-packages/sipbuild/api.py", line 51, in build_wheel
      project = AbstractProject.bootstrap('pep517')
    File "/tmp/pip-build-env-xn08oqsd/overlay/lib/python3.6/site-packages/sipbuild/abstract_project.py", line 83, in bootstrap
      project.setup(pyproject, tool, tool_description)
    File "/tmp/pip-build-env-xn08oqsd/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 594, in setup
      self.apply_user_defaults(tool)
    File "project.py", line 65, in apply_user_defaults
      super().apply_user_defaults(tool)
    File "/tmp/pip-build-env-xn08oqsd/overlay/lib/python3.6/site-packages/pyqtbuild/project.py", line 70, in apply_user_defaults
      super().apply_user_defaults(tool)
    File "/tmp/pip-build-env-xn08oqsd/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 241, in apply_user_defaults
      self.builder.apply_user_defaults(tool)
    File "/tmp/pip-build-env-xn08oqsd/overlay/lib/python3.6/site-packages/pyqtbuild/builder.py", line 76, in apply_user_defaults
      self._get_qt_configuration()
    File "/tmp/pip-build-env-xn08oqsd/overlay/lib/python3.6/site-packages/pyqtbuild/builder.py", line 495, in _get_qt_configuration
      for line in project.read_command_pipe([self.qmake, '-query']):
    File "/tmp/pip-build-env-xn08oqsd/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 558, in read_command_pipe
      "'{0}' failed returning {1}".format(cmd, pipe.returncode))
  sipbuild.exceptions.UserException
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/b2/c9/266b12a9826452e387f0ff4f0b4bbd29e11d2de81a5f60c0975933b34e7f/PyQt6-6.4.0.tar.gz#sha256=91392469be1f491905fa9e78fa4e4059a89ab616ddf2ecfd525bc1d65c26bb93 (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py prepare_metadata_for_build_wheel /tmp/tmphiu65xi5 Check the logs for full command output.
  Downloading PyQt6-6.3.1.tar.gz (1.0 MB)
     |████████████████████████████████| 1.0 MB 17.4 MB/s
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... error
  ERROR: Command errored out with exit status 1:
   command: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py prepare_metadata_for_build_wheel /tmp/tmpd20ysazv
       cwd: /tmp/pip-install-32n64tae/pyqt6_8fe814f99878487eb8d5b13ec574870d
  Complete output (35 lines):
  Querying qmake about your Qt installation...
  /usr/bin/qmake -query
  Traceback (most recent call last):
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 156, in prepare_metadata_for_build_wheel
      hook = backend.prepare_metadata_for_build_wheel
  AttributeError: module 'sipbuild.api' has no attribute 'prepare_metadata_for_build_wheel'

  During handling of the above exception, another exception occurred:

  Traceback (most recent call last):
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 363, in <module>
      main()
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 345, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 160, in prepare_metadata_for_build_wheel
      whl_basename = backend.build_wheel(metadata_directory, config_settings)
    File "/tmp/pip-build-env-xw9hfya6/overlay/lib/python3.6/site-packages/sipbuild/api.py", line 51, in build_wheel
      project = AbstractProject.bootstrap('pep517')
    File "/tmp/pip-build-env-xw9hfya6/overlay/lib/python3.6/site-packages/sipbuild/abstract_project.py", line 83, in bootstrap
      project.setup(pyproject, tool, tool_description)
    File "/tmp/pip-build-env-xw9hfya6/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 594, in setup
      self.apply_user_defaults(tool)
    File "project.py", line 67, in apply_user_defaults
      super().apply_user_defaults(tool)
    File "/tmp/pip-build-env-xw9hfya6/overlay/lib/python3.6/site-packages/pyqtbuild/project.py", line 70, in apply_user_defaults
      super().apply_user_defaults(tool)
    File "/tmp/pip-build-env-xw9hfya6/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 241, in apply_user_defaults
      self.builder.apply_user_defaults(tool)
    File "/tmp/pip-build-env-xw9hfya6/overlay/lib/python3.6/site-packages/pyqtbuild/builder.py", line 76, in apply_user_defaults
      self._get_qt_configuration()
    File "/tmp/pip-build-env-xw9hfya6/overlay/lib/python3.6/site-packages/pyqtbuild/builder.py", line 495, in _get_qt_configuration
      for line in project.read_command_pipe([self.qmake, '-query']):
    File "/tmp/pip-build-env-xw9hfya6/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 558, in read_command_pipe
      "'{0}' failed returning {1}".format(cmd, pipe.returncode))
  sipbuild.exceptions.UserException
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/a3/ab/c5989de70eceed91abf5f828d99817462ff75f41558e9f5a6f5213f0932c/PyQt6-6.3.1.tar.gz#sha256=8cc6e21dbaf7047d1fc897e396ccd9710a12f2ef976563dad65f06017d2c9757 (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py prepare_metadata_for_build_wheel /tmp/tmpd20ysazv Check the logs for full command output.
  Downloading PyQt6-6.3.0.tar.gz (1.0 MB)
     |████████████████████████████████| 1.0 MB 21.6 MB/s
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... error
  ERROR: Command errored out with exit status 1:
   command: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py prepare_metadata_for_build_wheel /tmp/tmp_ywaf57y
       cwd: /tmp/pip-install-32n64tae/pyqt6_ac9c3a1d6ef041debcbd3eb16f109dfe
  Complete output (35 lines):
  Querying qmake about your Qt installation...
  /usr/bin/qmake -query
  Traceback (most recent call last):
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 156, in prepare_metadata_for_build_wheel
      hook = backend.prepare_metadata_for_build_wheel
  AttributeError: module 'sipbuild.api' has no attribute 'prepare_metadata_for_build_wheel'

  During handling of the above exception, another exception occurred:

  Traceback (most recent call last):
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 363, in <module>
      main()
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 345, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 160, in prepare_metadata_for_build_wheel
      whl_basename = backend.build_wheel(metadata_directory, config_settings)
    File "/tmp/pip-build-env-qdciit42/overlay/lib/python3.6/site-packages/sipbuild/api.py", line 51, in build_wheel
      project = AbstractProject.bootstrap('pep517')
    File "/tmp/pip-build-env-qdciit42/overlay/lib/python3.6/site-packages/sipbuild/abstract_project.py", line 83, in bootstrap
      project.setup(pyproject, tool, tool_description)
    File "/tmp/pip-build-env-qdciit42/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 594, in setup
      self.apply_user_defaults(tool)
    File "project.py", line 67, in apply_user_defaults
      super().apply_user_defaults(tool)
    File "/tmp/pip-build-env-qdciit42/overlay/lib/python3.6/site-packages/pyqtbuild/project.py", line 70, in apply_user_defaults
      super().apply_user_defaults(tool)
    File "/tmp/pip-build-env-qdciit42/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 241, in apply_user_defaults
      self.builder.apply_user_defaults(tool)
    File "/tmp/pip-build-env-qdciit42/overlay/lib/python3.6/site-packages/pyqtbuild/builder.py", line 76, in apply_user_defaults
      self._get_qt_configuration()
    File "/tmp/pip-build-env-qdciit42/overlay/lib/python3.6/site-packages/pyqtbuild/builder.py", line 495, in _get_qt_configuration
      for line in project.read_command_pipe([self.qmake, '-query']):
    File "/tmp/pip-build-env-qdciit42/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 558, in read_command_pipe
      "'{0}' failed returning {1}".format(cmd, pipe.returncode))
  sipbuild.exceptions.UserException
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/1a/54/793f2a2408fd7774361faf99ecf1e276e787e0cbc3062161e2c54d94df33/PyQt6-6.3.0.tar.gz#sha256=4fd85dcb15ea4e734b6e4e216fe9a6246779761edaf2cf7c0cce1a2303a8d31b (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py prepare_metadata_for_build_wheel /tmp/tmp_ywaf57y Check the logs for full command output.
  Downloading PyQt6-6.2.3.tar.gz (1.0 MB)
     |████████████████████████████████| 1.0 MB 24.1 MB/s
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... error
  ERROR: Command errored out with exit status 1:
   command: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py prepare_metadata_for_build_wheel /tmp/tmpyob2r78d
       cwd: /tmp/pip-install-32n64tae/pyqt6_7e53f8bbd7234857b2f3090d889ca019
  Complete output (35 lines):
  Querying qmake about your Qt installation...
  /usr/bin/qmake -query
  Traceback (most recent call last):
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 156, in prepare_metadata_for_build_wheel
      hook = backend.prepare_metadata_for_build_wheel
  AttributeError: module 'sipbuild.api' has no attribute 'prepare_metadata_for_build_wheel'

  During handling of the above exception, another exception occurred:

  Traceback (most recent call last):
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 363, in <module>
      main()
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 345, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 160, in prepare_metadata_for_build_wheel
      whl_basename = backend.build_wheel(metadata_directory, config_settings)
    File "/tmp/pip-build-env-fwkfbr3x/overlay/lib/python3.6/site-packages/sipbuild/api.py", line 51, in build_wheel
      project = AbstractProject.bootstrap('pep517')
    File "/tmp/pip-build-env-fwkfbr3x/overlay/lib/python3.6/site-packages/sipbuild/abstract_project.py", line 83, in bootstrap
      project.setup(pyproject, tool, tool_description)
    File "/tmp/pip-build-env-fwkfbr3x/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 594, in setup
      self.apply_user_defaults(tool)
    File "project.py", line 67, in apply_user_defaults
      super().apply_user_defaults(tool)
    File "/tmp/pip-build-env-fwkfbr3x/overlay/lib/python3.6/site-packages/pyqtbuild/project.py", line 70, in apply_user_defaults
      super().apply_user_defaults(tool)
    File "/tmp/pip-build-env-fwkfbr3x/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 241, in apply_user_defaults
      self.builder.apply_user_defaults(tool)
    File "/tmp/pip-build-env-fwkfbr3x/overlay/lib/python3.6/site-packages/pyqtbuild/builder.py", line 76, in apply_user_defaults
      self._get_qt_configuration()
    File "/tmp/pip-build-env-fwkfbr3x/overlay/lib/python3.6/site-packages/pyqtbuild/builder.py", line 495, in _get_qt_configuration
      for line in project.read_command_pipe([self.qmake, '-query']):
    File "/tmp/pip-build-env-fwkfbr3x/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 558, in read_command_pipe
      "'{0}' failed returning {1}".format(cmd, pipe.returncode))
  sipbuild.exceptions.UserException
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/45/d6/36df7171a4cb00580a608bd92ce085f05fff5e04a74eeac0c52d7de0a584/PyQt6-6.2.3.tar.gz#sha256=a9bfcac198fe4b703706f809bb686c7cef5f60a7c802fc145c6b57929c7a6a34 (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py prepare_metadata_for_build_wheel /tmp/tmpyob2r78d Check the logs for full command output.
  Downloading PyQt6-6.2.2.tar.gz (1.0 MB)
     |████████████████████████████████| 1.0 MB 17.3 MB/s
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... error
  ERROR: Command errored out with exit status 1:
   command: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py prepare_metadata_for_build_wheel /tmp/tmpflgj4gcf
       cwd: /tmp/pip-install-32n64tae/pyqt6_f0d36122025142cd8bb02cefe203474b
  Complete output (35 lines):
  Querying qmake about your Qt installation...
  /usr/bin/qmake -query
  Traceback (most recent call last):
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 156, in prepare_metadata_for_build_wheel
      hook = backend.prepare_metadata_for_build_wheel
  AttributeError: module 'sipbuild.api' has no attribute 'prepare_metadata_for_build_wheel'

  During handling of the above exception, another exception occurred:

  Traceback (most recent call last):
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 363, in <module>
      main()
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 345, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 160, in prepare_metadata_for_build_wheel
      whl_basename = backend.build_wheel(metadata_directory, config_settings)
    File "/tmp/pip-build-env-wrztkao2/overlay/lib/python3.6/site-packages/sipbuild/api.py", line 51, in build_wheel
      project = AbstractProject.bootstrap('pep517')
    File "/tmp/pip-build-env-wrztkao2/overlay/lib/python3.6/site-packages/sipbuild/abstract_project.py", line 83, in bootstrap
      project.setup(pyproject, tool, tool_description)
    File "/tmp/pip-build-env-wrztkao2/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 594, in setup
      self.apply_user_defaults(tool)
    File "project.py", line 67, in apply_user_defaults
      super().apply_user_defaults(tool)
    File "/tmp/pip-build-env-wrztkao2/overlay/lib/python3.6/site-packages/pyqtbuild/project.py", line 70, in apply_user_defaults
      super().apply_user_defaults(tool)
    File "/tmp/pip-build-env-wrztkao2/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 241, in apply_user_defaults
      self.builder.apply_user_defaults(tool)
    File "/tmp/pip-build-env-wrztkao2/overlay/lib/python3.6/site-packages/pyqtbuild/builder.py", line 76, in apply_user_defaults
      self._get_qt_configuration()
    File "/tmp/pip-build-env-wrztkao2/overlay/lib/python3.6/site-packages/pyqtbuild/builder.py", line 495, in _get_qt_configuration
      for line in project.read_command_pipe([self.qmake, '-query']):
    File "/tmp/pip-build-env-wrztkao2/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 558, in read_command_pipe
      "'{0}' failed returning {1}".format(cmd, pipe.returncode))
  sipbuild.exceptions.UserException
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/7f/07/cf29b7e37069658f93b152c33fd0e9f0a1b0a9ac1ead84b2151a38eef473/PyQt6-6.2.2.tar.gz#sha256=9325a0f51c08e37340d916d2723daf9a25c844dac99d71d6c5aacb4f6ee00171 (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py prepare_metadata_for_build_wheel /tmp/tmpflgj4gcf Check the logs for full command output.
  Downloading PyQt6-6.2.1.tar.gz (1.0 MB)
     |████████████████████████████████| 1.0 MB 17.2 MB/s
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... error
  ERROR: Command errored out with exit status 1:
   command: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py prepare_metadata_for_build_wheel /tmp/tmpwf05sy_c
       cwd: /tmp/pip-install-32n64tae/pyqt6_85687d2802784211b672234a7bf0d05c
  Complete output (35 lines):
  Querying qmake about your Qt installation...
  /usr/bin/qmake -query
  Traceback (most recent call last):
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 156, in prepare_metadata_for_build_wheel
      hook = backend.prepare_metadata_for_build_wheel
  AttributeError: module 'sipbuild.api' has no attribute 'prepare_metadata_for_build_wheel'

  During handling of the above exception, another exception occurred:

  Traceback (most recent call last):
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 363, in <module>
      main()
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 345, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 160, in prepare_metadata_for_build_wheel
      whl_basename = backend.build_wheel(metadata_directory, config_settings)
    File "/tmp/pip-build-env-3lxz4pox/overlay/lib/python3.6/site-packages/sipbuild/api.py", line 51, in build_wheel
      project = AbstractProject.bootstrap('pep517')
    File "/tmp/pip-build-env-3lxz4pox/overlay/lib/python3.6/site-packages/sipbuild/abstract_project.py", line 83, in bootstrap
      project.setup(pyproject, tool, tool_description)
    File "/tmp/pip-build-env-3lxz4pox/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 594, in setup
      self.apply_user_defaults(tool)
    File "project.py", line 61, in apply_user_defaults
      super().apply_user_defaults(tool)
    File "/tmp/pip-build-env-3lxz4pox/overlay/lib/python3.6/site-packages/pyqtbuild/project.py", line 70, in apply_user_defaults
      super().apply_user_defaults(tool)
    File "/tmp/pip-build-env-3lxz4pox/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 241, in apply_user_defaults
      self.builder.apply_user_defaults(tool)
    File "/tmp/pip-build-env-3lxz4pox/overlay/lib/python3.6/site-packages/pyqtbuild/builder.py", line 76, in apply_user_defaults
      self._get_qt_configuration()
    File "/tmp/pip-build-env-3lxz4pox/overlay/lib/python3.6/site-packages/pyqtbuild/builder.py", line 495, in _get_qt_configuration
      for line in project.read_command_pipe([self.qmake, '-query']):
    File "/tmp/pip-build-env-3lxz4pox/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 558, in read_command_pipe
      "'{0}' failed returning {1}".format(cmd, pipe.returncode))
  sipbuild.exceptions.UserException
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/49/34/bd5a65ffc1a887d8d26f59f7993bb2f9abef3085c21dc74f03e3e834e57a/PyQt6-6.2.1.tar.gz#sha256=d603a5c8effccc9174b3f43834256401a61ea40f2338306ca22fb6a1e870b89c (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py prepare_metadata_for_build_wheel /tmp/tmpwf05sy_c Check the logs for full command output.
  Downloading PyQt6-6.2.0.tar.gz (1.0 MB)
     |████████████████████████████████| 1.0 MB 21.6 MB/s
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... error
  ERROR: Command errored out with exit status 1:
   command: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py prepare_metadata_for_build_wheel /tmp/tmpfhr338nu
       cwd: /tmp/pip-install-32n64tae/pyqt6_0b03723bf8024193b0be21b202ee33d7
  Complete output (35 lines):
  Querying qmake about your Qt installation...
  /usr/bin/qmake -query
  Traceback (most recent call last):
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 156, in prepare_metadata_for_build_wheel
      hook = backend.prepare_metadata_for_build_wheel
  AttributeError: module 'sipbuild.api' has no attribute 'prepare_metadata_for_build_wheel'

  During handling of the above exception, another exception occurred:

  Traceback (most recent call last):
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 363, in <module>
      main()
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 345, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 160, in prepare_metadata_for_build_wheel
      whl_basename = backend.build_wheel(metadata_directory, config_settings)
    File "/tmp/pip-build-env-2b15cqav/overlay/lib/python3.6/site-packages/sipbuild/api.py", line 51, in build_wheel
      project = AbstractProject.bootstrap('pep517')
    File "/tmp/pip-build-env-2b15cqav/overlay/lib/python3.6/site-packages/sipbuild/abstract_project.py", line 83, in bootstrap
      project.setup(pyproject, tool, tool_description)
    File "/tmp/pip-build-env-2b15cqav/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 594, in setup
      self.apply_user_defaults(tool)
    File "project.py", line 61, in apply_user_defaults
      super().apply_user_defaults(tool)
    File "/tmp/pip-build-env-2b15cqav/overlay/lib/python3.6/site-packages/pyqtbuild/project.py", line 70, in apply_user_defaults
      super().apply_user_defaults(tool)
    File "/tmp/pip-build-env-2b15cqav/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 241, in apply_user_defaults
      self.builder.apply_user_defaults(tool)
    File "/tmp/pip-build-env-2b15cqav/overlay/lib/python3.6/site-packages/pyqtbuild/builder.py", line 76, in apply_user_defaults
      self._get_qt_configuration()
    File "/tmp/pip-build-env-2b15cqav/overlay/lib/python3.6/site-packages/pyqtbuild/builder.py", line 495, in _get_qt_configuration
      for line in project.read_command_pipe([self.qmake, '-query']):
    File "/tmp/pip-build-env-2b15cqav/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 558, in read_command_pipe
      "'{0}' failed returning {1}".format(cmd, pipe.returncode))
  sipbuild.exceptions.UserException
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/63/14/342909751d8cb6931ca1548a9834f5f581c69c2bc5836e65a8aeee9f1bb7/PyQt6-6.2.0.tar.gz#sha256=142ce7fa574d7ebb13fb0a2ebd18c86087c35829f786c094a71a0749155d8fee (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py prepare_metadata_for_build_wheel /tmp/tmpfhr338nu Check the logs for full command output.
  Downloading PyQt6-6.1.1.tar.gz (949 kB)
     |████████████████████████████████| 949 kB 20.1 MB/s
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... error
  ERROR: Command errored out with exit status 1:
   command: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py prepare_metadata_for_build_wheel /tmp/tmprw_86tqf
       cwd: /tmp/pip-install-32n64tae/pyqt6_a214a87a8e61459bb0828b7a95ef39f4
  Complete output (35 lines):
  Querying qmake about your Qt installation...
  /usr/bin/qmake -query
  Traceback (most recent call last):
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 156, in prepare_metadata_for_build_wheel
      hook = backend.prepare_metadata_for_build_wheel
  AttributeError: module 'sipbuild.api' has no attribute 'prepare_metadata_for_build_wheel'

  During handling of the above exception, another exception occurred:

  Traceback (most recent call last):
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 363, in <module>
      main()
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 345, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 160, in prepare_metadata_for_build_wheel
      whl_basename = backend.build_wheel(metadata_directory, config_settings)
    File "/tmp/pip-build-env-qbhlaf_y/overlay/lib/python3.6/site-packages/sipbuild/api.py", line 51, in build_wheel
      project = AbstractProject.bootstrap('pep517')
    File "/tmp/pip-build-env-qbhlaf_y/overlay/lib/python3.6/site-packages/sipbuild/abstract_project.py", line 83, in bootstrap
      project.setup(pyproject, tool, tool_description)
    File "/tmp/pip-build-env-qbhlaf_y/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 594, in setup
      self.apply_user_defaults(tool)
    File "project.py", line 60, in apply_user_defaults
      super().apply_user_defaults(tool)
    File "/tmp/pip-build-env-qbhlaf_y/overlay/lib/python3.6/site-packages/pyqtbuild/project.py", line 70, in apply_user_defaults
      super().apply_user_defaults(tool)
    File "/tmp/pip-build-env-qbhlaf_y/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 241, in apply_user_defaults
      self.builder.apply_user_defaults(tool)
    File "/tmp/pip-build-env-qbhlaf_y/overlay/lib/python3.6/site-packages/pyqtbuild/builder.py", line 76, in apply_user_defaults
      self._get_qt_configuration()
    File "/tmp/pip-build-env-qbhlaf_y/overlay/lib/python3.6/site-packages/pyqtbuild/builder.py", line 495, in _get_qt_configuration
      for line in project.read_command_pipe([self.qmake, '-query']):
    File "/tmp/pip-build-env-qbhlaf_y/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 558, in read_command_pipe
      "'{0}' failed returning {1}".format(cmd, pipe.returncode))
  sipbuild.exceptions.UserException
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/a0/07/0ae4f67768c1150af851572fae287aeaf956ed91b3b650b888a856274ae4/PyQt6-6.1.1.tar.gz#sha256=8775244fa73f94bfe8ae7672b624e2a903a22bc35d7ea42dd830949e2f9e43c7 (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py prepare_metadata_for_build_wheel /tmp/tmprw_86tqf Check the logs for full command output.
  Downloading PyQt6-6.1.0.tar.gz (946 kB)
     |████████████████████████████████| 946 kB 22.4 MB/s
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... error
  ERROR: Command errored out with exit status 1:
   command: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py prepare_metadata_for_build_wheel /tmp/tmps8r7m_qn
       cwd: /tmp/pip-install-32n64tae/pyqt6_550b9da4b0ba4d7e89cc865f2e08e1c4
  Complete output (35 lines):
  Querying qmake about your Qt installation...
  /usr/bin/qmake -query
  Traceback (most recent call last):
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 156, in prepare_metadata_for_build_wheel
      hook = backend.prepare_metadata_for_build_wheel
  AttributeError: module 'sipbuild.api' has no attribute 'prepare_metadata_for_build_wheel'

  During handling of the above exception, another exception occurred:

  Traceback (most recent call last):
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 363, in <module>
      main()
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 345, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 160, in prepare_metadata_for_build_wheel
      whl_basename = backend.build_wheel(metadata_directory, config_settings)
    File "/tmp/pip-build-env-djvrzfmp/overlay/lib/python3.6/site-packages/sipbuild/api.py", line 51, in build_wheel
      project = AbstractProject.bootstrap('pep517')
    File "/tmp/pip-build-env-djvrzfmp/overlay/lib/python3.6/site-packages/sipbuild/abstract_project.py", line 83, in bootstrap
      project.setup(pyproject, tool, tool_description)
    File "/tmp/pip-build-env-djvrzfmp/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 594, in setup
      self.apply_user_defaults(tool)
    File "project.py", line 60, in apply_user_defaults
      super().apply_user_defaults(tool)
    File "/tmp/pip-build-env-djvrzfmp/overlay/lib/python3.6/site-packages/pyqtbuild/project.py", line 70, in apply_user_defaults
      super().apply_user_defaults(tool)
    File "/tmp/pip-build-env-djvrzfmp/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 241, in apply_user_defaults
      self.builder.apply_user_defaults(tool)
    File "/tmp/pip-build-env-djvrzfmp/overlay/lib/python3.6/site-packages/pyqtbuild/builder.py", line 76, in apply_user_defaults
      self._get_qt_configuration()
    File "/tmp/pip-build-env-djvrzfmp/overlay/lib/python3.6/site-packages/pyqtbuild/builder.py", line 495, in _get_qt_configuration
      for line in project.read_command_pipe([self.qmake, '-query']):
    File "/tmp/pip-build-env-djvrzfmp/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 558, in read_command_pipe
      "'{0}' failed returning {1}".format(cmd, pipe.returncode))
  sipbuild.exceptions.UserException
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/64/be/d2b48e53d5767f25d607fa5a598e2af6ef9e1e8475bd6bfc60b27a5f34ea/PyQt6-6.1.0.tar.gz#sha256=9b45df6c404d7297598b91378d1e3f9bdf0970553ebb53c192a9051576098f9b (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py prepare_metadata_for_build_wheel /tmp/tmps8r7m_qn Check the logs for full command output.
  Downloading PyQt6-6.0.3.tar.gz (941 kB)
     |████████████████████████████████| 941 kB 19.3 MB/s
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... error
  ERROR: Command errored out with exit status 1:
   command: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py prepare_metadata_for_build_wheel /tmp/tmpm4qhis46
       cwd: /tmp/pip-install-32n64tae/pyqt6_7a1f61c8413d409d8e94f5fc82876b6a
  Complete output (35 lines):
  Querying qmake about your Qt installation...
  /usr/bin/qmake -query
  Traceback (most recent call last):
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 156, in prepare_metadata_for_build_wheel
      hook = backend.prepare_metadata_for_build_wheel
  AttributeError: module 'sipbuild.api' has no attribute 'prepare_metadata_for_build_wheel'

  During handling of the above exception, another exception occurred:

  Traceback (most recent call last):
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 363, in <module>
      main()
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 345, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 160, in prepare_metadata_for_build_wheel
      whl_basename = backend.build_wheel(metadata_directory, config_settings)
    File "/tmp/pip-build-env-n6wcqfx1/overlay/lib/python3.6/site-packages/sipbuild/api.py", line 51, in build_wheel
      project = AbstractProject.bootstrap('pep517')
    File "/tmp/pip-build-env-n6wcqfx1/overlay/lib/python3.6/site-packages/sipbuild/abstract_project.py", line 83, in bootstrap
      project.setup(pyproject, tool, tool_description)
    File "/tmp/pip-build-env-n6wcqfx1/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 594, in setup
      self.apply_user_defaults(tool)
    File "project.py", line 60, in apply_user_defaults
      super().apply_user_defaults(tool)
    File "/tmp/pip-build-env-n6wcqfx1/overlay/lib/python3.6/site-packages/pyqtbuild/project.py", line 70, in apply_user_defaults
      super().apply_user_defaults(tool)
    File "/tmp/pip-build-env-n6wcqfx1/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 241, in apply_user_defaults
      self.builder.apply_user_defaults(tool)
    File "/tmp/pip-build-env-n6wcqfx1/overlay/lib/python3.6/site-packages/pyqtbuild/builder.py", line 76, in apply_user_defaults
      self._get_qt_configuration()
    File "/tmp/pip-build-env-n6wcqfx1/overlay/lib/python3.6/site-packages/pyqtbuild/builder.py", line 495, in _get_qt_configuration
      for line in project.read_command_pipe([self.qmake, '-query']):
    File "/tmp/pip-build-env-n6wcqfx1/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 558, in read_command_pipe
      "'{0}' failed returning {1}".format(cmd, pipe.returncode))
  sipbuild.exceptions.UserException
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/29/4c/2f98c98536b957117ac02c3ffe027c3a66937c027f6b3506d6dd4aca3389/PyQt6-6.0.3.tar.gz#sha256=bfe5946a667080f7f755fb5acb92706c3e029bf7679d77fc3898f900f69f768a (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py prepare_metadata_for_build_wheel /tmp/tmpm4qhis46 Check the logs for full command output.
  Downloading PyQt6-6.0.2.tar.gz (940 kB)
     |████████████████████████████████| 940 kB 17.9 MB/s
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... error
  ERROR: Command errored out with exit status 1:
   command: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py prepare_metadata_for_build_wheel /tmp/tmpelo8d26r
       cwd: /tmp/pip-install-32n64tae/pyqt6_69cec17b3feb473f93956a9255b6e51c
  Complete output (35 lines):
  Querying qmake about your Qt installation...
  /usr/bin/qmake -query
  Traceback (most recent call last):
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 156, in prepare_metadata_for_build_wheel
      hook = backend.prepare_metadata_for_build_wheel
  AttributeError: module 'sipbuild.api' has no attribute 'prepare_metadata_for_build_wheel'

  During handling of the above exception, another exception occurred:

  Traceback (most recent call last):
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 363, in <module>
      main()
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 345, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 160, in prepare_metadata_for_build_wheel
      whl_basename = backend.build_wheel(metadata_directory, config_settings)
    File "/tmp/pip-build-env-vloy_jtj/overlay/lib/python3.6/site-packages/sipbuild/api.py", line 51, in build_wheel
      project = AbstractProject.bootstrap('pep517')
    File "/tmp/pip-build-env-vloy_jtj/overlay/lib/python3.6/site-packages/sipbuild/abstract_project.py", line 83, in bootstrap
      project.setup(pyproject, tool, tool_description)
    File "/tmp/pip-build-env-vloy_jtj/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 594, in setup
      self.apply_user_defaults(tool)
    File "project.py", line 60, in apply_user_defaults
      super().apply_user_defaults(tool)
    File "/tmp/pip-build-env-vloy_jtj/overlay/lib/python3.6/site-packages/pyqtbuild/project.py", line 70, in apply_user_defaults
      super().apply_user_defaults(tool)
    File "/tmp/pip-build-env-vloy_jtj/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 241, in apply_user_defaults
      self.builder.apply_user_defaults(tool)
    File "/tmp/pip-build-env-vloy_jtj/overlay/lib/python3.6/site-packages/pyqtbuild/builder.py", line 76, in apply_user_defaults
      self._get_qt_configuration()
    File "/tmp/pip-build-env-vloy_jtj/overlay/lib/python3.6/site-packages/pyqtbuild/builder.py", line 495, in _get_qt_configuration
      for line in project.read_command_pipe([self.qmake, '-query']):
    File "/tmp/pip-build-env-vloy_jtj/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 558, in read_command_pipe
      "'{0}' failed returning {1}".format(cmd, pipe.returncode))
  sipbuild.exceptions.UserException
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/80/2a/70619beeebc44e0d554beaed5c6687e55d8c284d8f0fa0eeb66372ce15d0/PyQt6-6.0.2.tar.gz#sha256=aab1b58e287cd8c91d7f7b8c4f91d68b8980f07fcd2ad6d9adbf0bb75347fb9a (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py prepare_metadata_for_build_wheel /tmp/tmpelo8d26r Check the logs for full command output.
  Downloading PyQt6-6.0.1.tar.gz (940 kB)
     |████████████████████████████████| 940 kB 19.4 MB/s
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... error
  ERROR: Command errored out with exit status 1:
   command: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py prepare_metadata_for_build_wheel /tmp/tmpkze0q415
       cwd: /tmp/pip-install-32n64tae/pyqt6_789337a189b941a1bb99e8ca5f0f8b00
  Complete output (35 lines):
  Querying qmake about your Qt installation...
  /usr/bin/qmake -query
  Traceback (most recent call last):
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 156, in prepare_metadata_for_build_wheel
      hook = backend.prepare_metadata_for_build_wheel
  AttributeError: module 'sipbuild.api' has no attribute 'prepare_metadata_for_build_wheel'

  During handling of the above exception, another exception occurred:

  Traceback (most recent call last):
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 363, in <module>
      main()
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 345, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 160, in prepare_metadata_for_build_wheel
      whl_basename = backend.build_wheel(metadata_directory, config_settings)
    File "/tmp/pip-build-env-yujmeby9/overlay/lib/python3.6/site-packages/sipbuild/api.py", line 51, in build_wheel
      project = AbstractProject.bootstrap('pep517')
    File "/tmp/pip-build-env-yujmeby9/overlay/lib/python3.6/site-packages/sipbuild/abstract_project.py", line 83, in bootstrap
      project.setup(pyproject, tool, tool_description)
    File "/tmp/pip-build-env-yujmeby9/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 594, in setup
      self.apply_user_defaults(tool)
    File "project.py", line 61, in apply_user_defaults
      super().apply_user_defaults(tool)
    File "/tmp/pip-build-env-yujmeby9/overlay/lib/python3.6/site-packages/pyqtbuild/project.py", line 70, in apply_user_defaults
      super().apply_user_defaults(tool)
    File "/tmp/pip-build-env-yujmeby9/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 241, in apply_user_defaults
      self.builder.apply_user_defaults(tool)
    File "/tmp/pip-build-env-yujmeby9/overlay/lib/python3.6/site-packages/pyqtbuild/builder.py", line 76, in apply_user_defaults
      self._get_qt_configuration()
    File "/tmp/pip-build-env-yujmeby9/overlay/lib/python3.6/site-packages/pyqtbuild/builder.py", line 495, in _get_qt_configuration
      for line in project.read_command_pipe([self.qmake, '-query']):
    File "/tmp/pip-build-env-yujmeby9/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 558, in read_command_pipe
      "'{0}' failed returning {1}".format(cmd, pipe.returncode))
  sipbuild.exceptions.UserException
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/f9/29/db2cb373ceac78c829def458fdfe72a637ed991d65f4e026997db5f3f200/PyQt6-6.0.1.tar.gz#sha256=313f0f4bf0158e7ce3b892f1ec16b3378e505e0f2458394c1245eb6807695c0d (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py prepare_metadata_for_build_wheel /tmp/tmpkze0q415 Check the logs for full command output.
  Downloading PyQt6-6.0.0.tar.gz (579 kB)
     |████████████████████████████████| 579 kB 23.1 MB/s
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Preparing metadata (pyproject.toml) ... error
  ERROR: Command errored out with exit status 1:
   command: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py prepare_metadata_for_build_wheel /tmp/tmp6lf9htb4
       cwd: /tmp/pip-install-32n64tae/pyqt6_1f92e8ba23114cf0bfa4e94eabf4d551
  Complete output (35 lines):
  Querying qmake about your Qt installation...
  /usr/bin/qmake -query
  Traceback (most recent call last):
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 156, in prepare_metadata_for_build_wheel
      hook = backend.prepare_metadata_for_build_wheel
  AttributeError: module 'sipbuild.api' has no attribute 'prepare_metadata_for_build_wheel'

  During handling of the above exception, another exception occurred:

  Traceback (most recent call last):
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 363, in <module>
      main()
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 345, in main
      json_out['return_val'] = hook(**hook_input['kwargs'])
    File "/home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py", line 160, in prepare_metadata_for_build_wheel
      whl_basename = backend.build_wheel(metadata_directory, config_settings)
    File "/tmp/pip-build-env-05ngsntd/overlay/lib/python3.6/site-packages/sipbuild/api.py", line 51, in build_wheel
      project = AbstractProject.bootstrap('pep517')
    File "/tmp/pip-build-env-05ngsntd/overlay/lib/python3.6/site-packages/sipbuild/abstract_project.py", line 83, in bootstrap
      project.setup(pyproject, tool, tool_description)
    File "/tmp/pip-build-env-05ngsntd/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 594, in setup
      self.apply_user_defaults(tool)
    File "project.py", line 61, in apply_user_defaults
      super().apply_user_defaults(tool)
    File "/tmp/pip-build-env-05ngsntd/overlay/lib/python3.6/site-packages/pyqtbuild/project.py", line 70, in apply_user_defaults
      super().apply_user_defaults(tool)
    File "/tmp/pip-build-env-05ngsntd/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 241, in apply_user_defaults
      self.builder.apply_user_defaults(tool)
    File "/tmp/pip-build-env-05ngsntd/overlay/lib/python3.6/site-packages/pyqtbuild/builder.py", line 76, in apply_user_defaults
      self._get_qt_configuration()
    File "/tmp/pip-build-env-05ngsntd/overlay/lib/python3.6/site-packages/pyqtbuild/builder.py", line 495, in _get_qt_configuration
      for line in project.read_command_pipe([self.qmake, '-query']):
    File "/tmp/pip-build-env-05ngsntd/overlay/lib/python3.6/site-packages/sipbuild/project.py", line 558, in read_command_pipe
      "'{0}' failed returning {1}".format(cmd, pipe.returncode))
  sipbuild.exceptions.UserException
  ----------------------------------------
WARNING: Discarding https://files.pythonhosted.org/packages/f7/01/b2b521b6df7153d57d6aa119184afdc8bf8d7d538a5fb22083c6093a49b9/PyQt6-6.0.0.tar.gz#sha256=c758b0568127bffd7147f461d74bbf06249177eae908efed8099eec30984f1b3 (from https://pypi.org/simple/pyqt6/) (requires-python:>=3.6.1). Command errored out with exit status 1: /usr/bin/python3 /home/jetson/.local/lib/python3.6/site-packages/pip/_vendor/pep517/in_process/_in_process.py prepare_metadata_for_build_wheel /tmp/tmp6lf9htb4 Check the logs for full command output.
ERROR: Could not find a version that satisfies the requirement pyqt6 (from versions: 6.0.0, 6.0.1, 6.0.2, 6.0.3, 6.1.0, 6.1.1, 6.2.0, 6.2.1, 6.2.2, 6.2.3, 6.3.0, 6.3.1, 6.4.0, 6.4.1, 6.4.2, 6.5.0, 6.5.1, 6.5.2, 6.5.3, 6.6.0, 6.6.1)
ERROR: No matching distribution found for pyqt6
jetson@jetson-desktop:~$

Hi,
There are topics about building/running QT on Jetson platforms:
PySide2 (Qt for python) installation on Jetson Xavier - #5 by Muscle_Oliver
Jetson Nano and Qt5 - #2 by WayneWWW
Pyqt not working on Nano - #4 by coolbot
How to Install PyQt5 Jetson nano - #2 by prince.alondra
Installing QT6 and PySide6 on Jetson Orin Nano

Please take a look and give it a try.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.