无法在 Termux 中(在 Android 平板电脑上)通过 pip 安装 numpy(以及许多其他软件包)

问题描述 投票:0回答:1

我尝试在 Termux (v.0.118.0) 上使用 NVChad 在我的 Android 平板电脑(Lenovo P11 第二代,Android 13)中编辑一些 python 脚本。 NVChad 工作得很好,但是(如标题中所述)我无法在 Termux 中安装某些软件包。奇怪的是,有些软件包运行得很好。例如,

pip install sympy
安装sympy没有任何错误,并且在运行代码时工作得很好。但是,我无法导入 numpy、scipy、pandas、matplotlib 或任何其他此类包。例如,
pip install numpy
返回:

  Collecting numpy
  Using cached numpy-1.26.4.tar.gz (15.8 MB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Installing backend dependencies ... error
  error: subprocess-exited-with-error
  × pip subprocess to install backend dependencies did not run successfully.
  │ exit code: 1
  ╰─> [67 lines of output]
      Collecting patchelf>=0.11.0
        Using cached patchelf-0.17.2.1.tar.gz (167 kB)
        Installing build dependencies: started
        Installing build dependencies: finished with status 'done'
        Getting requirements to build wheel: started
        ***(Something about building wheel and loading ninja. Everything ends with "done")***
        Preparing metadata (pyproject.toml): started
        Preparing metadata (pyproject.toml): finished with status 'done'
      Building wheels for collected packages: patchelf, ninja
        Building wheel for patchelf (pyproject.toml): started
        Building wheel for patchelf (pyproject.toml): finished with status 'error'
        error: subprocess-exited-with-error
        × Building wheel for patchelf (pyproject.toml) did not run successfully.
        │ exit code: 1
        ╰─> [11 lines of output]
            Traceback (most recent call last):
              File "/data/data/com.termux/files/usr/tmp/pip-build-env-c35ylp3h/overlay/lib/python3.11/site-packages/skbuild/setuptools_wrap.py", line 645, in setup
                cmkr = cmaker.CMaker(cmake_executable)
                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
              File "/data/data/com.termux/files/usr/tmp/pip-build-env-c35ylp3h/overlay/lib/python3.11/site-packages/skbuild/cmaker.py", line 148, in __init__
                self.cmake_version = get_cmake_version(self.cmake_executable)
                                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
              File "/data/data/com.termux/files/usr/tmp/pip-build-env-c35ylp3h/overlay/lib/python3.11/site-packages/skbuild/cmaker.py", line 105, in get_cmake_version
                raise SKBuildError(msg) from err
            Problem with the CMake installation, aborting build. CMake executable is cmake
            [end of output]
        note: This error originates from a subprocess, and is likely not a problem with pip.
        ERROR: Failed building wheel for patchelf
        Building wheel for ninja (pyproject.toml): started
        Building wheel for ninja (pyproject.toml): finished with status 'error'
        error: subprocess-exited-with-error
        × Building wheel for ninja (pyproject.toml) did not run successfully.
        │ exit code: 1
        ╰─> [15 lines of output]
            /data/data/com.termux/files/usr/tmp/pip-build-env-cca3tsj3/overlay/lib/python3.11/site-packages/setuptools_scm/git.py:308: UserWarning: git archive did not support describe output
              warnings.warn("git archive did not support describe output")
            /data/data/com.termux/files/usr/tmp/pip-build-env-cca3tsj3/overlay/lib/python3.11/site-packages/setuptools_scm/git.py:327: UserWarning: unprocessed git archival found (no export subst applied)
              warnings.warn("unprocessed git archival found (no export subst applied)")
            Traceback (most recent call last):
              File "/data/data/com.termux/files/usr/tmp/pip-build-env-cca3tsj3/overlay/lib/python3.11/site-packages/skbuild/setuptools_wrap.py", line 645, in setup
                cmkr = cmaker.CMaker(cmake_executable)
                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
              File "/data/data/com.termux/files/usr/tmp/pip-build-env-cca3tsj3/overlay/lib/python3.11/site-packages/skbuild/cmaker.py", line 148, in __init__
                self.cmake_version = get_cmake_version(self.cmake_executable)
                                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
              File "/data/data/com.termux/files/usr/tmp/pip-build-env-cca3tsj3/overlay/lib/python3.11/site-packages/skbuild/cmaker.py", line 105, in get_cmake_version
                raise SKBuildError(msg) from err
            Problem with the CMake installation, aborting build. CMake executable is cmake
            [end of output]
        note: This error originates from a subprocess, and is likely not a problem with pip.
        ERROR: Failed building wheel for ninja
      Failed to build patchelf ninja
      ERROR: Could not build wheels for patchelf, ninja, which is required to install pyproject.toml-based projects
      [end of output]
  note: This error originates from a subprocess, and is likely not a problem with pip.
error: subprocess-exited-with-error
× pip subprocess to install backend dependencies 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.

我做了一些研究,并确保

pkg update
pkg upgrade
pkg install openssl
pkg build-essential
。我希望就是这样,也许安装更多的依赖项,它就会被修复。相反,在没有错误地安装 build-essential 并再次尝试
pip install numpy
后,我收到了一条巨大的错误消息。事实上,这么长时间以来,StackOverflow 都不让我完整地发布它。我必须删除一些部分(用***括号***解释缺少的内容)如下:

  Collecting numpy
  Using cached numpy-1.26.4.tar.gz (15.8 MB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
  Installing backend dependencies ... error
  error: subprocess-exited-with-error
  × pip subprocess to install backend dependencies did not run successfully.
  │ exit code: 1
  ╰─> [308 lines of output]
      Collecting patchelf>=0.11.0
        Using cached patchelf-0.17.2.1.tar.gz (167 kB)
        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'
      Building wheels for collected packages: patchelf
        Building wheel for patchelf (pyproject.toml): started
        Building wheel for patchelf (pyproject.toml): finished with status 'error'
        error: subprocess-exited-with-error
        × Building wheel for patchelf (pyproject.toml) did not run successfully.
        │ exit code: 1
        ╰─> [286 lines of output]            -- Trying 'Ninja' generator            --
            CMake Deprecation Warning at CMakeLists.txt:1 (cmake_minimum_required):
              Compatibility with CMake < 3.5 will be removed from a future version of
              CMake.
              Update the VERSION argument <min> value or use a ...<max> suffix to tell
              CMake that the project does not need compatibility with older versions.
            Not searching for unused variables given on the command line.
            -- The C compiler identification is Clang 17.0.6
            -- Detecting C compiler ABI info
            -- Detecting C compiler ABI info - done
            -- Check for working C compiler: /data/data/com.termux/files/usr/bin/cc - skipped
            -- Detecting C compile features
            -- Detecting C compile features - done
            -- The CXX compiler identification is Clang 17.0.6
            -- Detecting CXX compiler ABI info
            -- Detecting CXX compiler ABI info - done
            -- Check for working CXX compiler: /data/data/com.termux/files/usr/bin/c++ - skipped
            -- Detecting CXX compile features
            -- Detecting CXX compile features - done
            -- Configuring done (1.9s)
            -- Generating done (0.0s)
            -- Build files have been written to: /data/data/com.termux/files/usr/tmp/pip-install-qa3ercoq/patchelf_a4f55e4e6872436da81e30e2708da6e3/_cmake_test_compile/build
            --            -- Trying 'Ninja' generator - success            Configuring Project
              Working directory:
                /data/data/com.termux/files/usr/tmp/pip-install-qa3ercoq/patchelf_a4f55e4e6872436da81e30e2708da6e3/_skbuild/linux-aarch64-3.11/cmake-build
              Command:
                ***(A gigantic command)***
            Not searching for unused variables given on the command line.
            ***(A bit about the C compiler being Clang)***
            [1/9] Creating directories for 'build_patchelf'
            [2/9] No download step for 'build_patchelf'
            [3/9] No update step for 'build_patchelf'
            [4/9] Performing patch step for 'build_patchelf'
            autoreconf: export WARNINGS=all
            autoreconf: Entering directory '.'
            autoreconf: configure.ac: not using Gettext
            autoreconf: running: aclocal --force
            autoreconf: configure.ac: tracing
            autoreconf: configure.ac: creating directory build-aux
            autoreconf: configure.ac: not using Libtool
            autoreconf: configure.ac: not using Intltool
            autoreconf: configure.ac: not using Gtkdoc
            autoreconf: running: /data/data/com.termux/files/usr/bin/autoconf --force
            autoreconf: configure.ac: not using Autoheader
            autoreconf: running: automake --add-missing --copy --force-missing
            configure.ac:14: installing 'build-aux/compile'
            configure.ac:5: installing 'build-aux/install-sh'
            configure.ac:5: installing 'build-aux/missing'
            src/Makefile.am: installing 'build-aux/depcomp'
            parallel-tests: installing 'build-aux/test-driver'
            autoreconf: 'build-aux/install-sh' is updated
            autoreconf: Leaving directory '.'
            [5/9] Performing configure step for 'build_patchelf'
            checking for a BSD-compatible install... /data/data/com.termux/files/usr/bin/install -c
            checking whether build environment is sane... yes
            checking for a race-free mkdir -p... /data/data/com.termux/files/usr/bin/mkdir -p
            checking for gawk... gawk
            checking whether make sets $(MAKE)... yes
            checking whether make supports nested variables... yes
            checking for strip... no
            checking for objdump... no
            checking for objcopy... no
            checking for readelf... no
            checking whether make supports the include directive... yes (GNU style)
            checking for gcc... gcc
            checking whether the C compiler works... yes
            checking for C compiler default output file name... a.out
            checking for suffix of executables...
            checking whether we are cross compiling... no
            checking for suffix of object files... o
            checking whether the compiler supports GNU C... yes
            checking whether gcc accepts -g... yes
            checking for gcc option to enable C11 features... none needed
            checking whether gcc understands -c and -o together... yes
            checking dependency style of gcc... gcc3
            checking for g++... g++
            checking whether the compiler supports GNU C++... yes
            checking whether g++ accepts -g... yes
            checking for g++ option to enable C++11 features... unsupported
            checking for g++ option to enable C++98 features... unsupported
            checking dependency style of g++... gcc3
            checking dependency style of gcc... gcc3
            checking whether g++ supports C++17 features with -std=c++17... yes
            checking that generated files are newer than configure... done
            configure: creating ./config.status
            config.status: creating Makefile
            config.status: creating src/Makefile
            config.status: creating tests/Makefile
            config.status: creating patchelf.spec
            config.status: executing depfiles commands
            [6/9] Performing build step for 'build_patchelf'
            FAILED: build_patchelf-prefix/src/build_patchelf-stamp/build_patchelf-build /data/data/com.termux/files/usr/tmp/pip-install-qa3ercoq/patchelf_a4f55e4e6872436da81e30e2708da6e3/_skbuild/linux-aarch64-3.11/cmake-build/build_patchelf-prefix/src/build_patchelf-stamp/build_patchelf-build
            cd /data/data/com.termux/files/usr/tmp/pip-install-qa3ercoq/patchelf_a4f55e4e6872436da81e30e2708da6e3/src/patchelf-upstream && /data/data/com.termux/files/usr/bin/make check && /data/data/com.termux/files/usr/bin/cmake -E touch /data/data/com.termux/files/usr/tmp/pip-install-qa3ercoq/patchelf_a4f55e4e6872436da81e30e2708da6e3/_skbuild/linux-aarch64-3.11/cmake-build/build_patchelf-prefix/src/build_patchelf-stamp/build_patchelf-build
            Making check in src
            make[1]: Entering directory '/data/data/com.termux/files/usr/tmp/pip-install-qa3ercoq/patchelf_a4f55e4e6872436da81e30e2708da6e3/src/patchelf-upstream/src'
            g++ -std=c++17 -DPACKAGE_NAME=\"patchelf\" -DPACKAGE_TARNAME=\"patchelf\" -DPACKAGE_VERSION=\"0.17.2\" -DPACKAGE_STRING=\"patchelf\ 0.17.2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"patchelf\" -DVERSION=\"0.17.2\" -DHAVE_CXX17=1 -I.    -Wall -std=c++17 -D_FILE_OFFSET_BITS=64     -g -O2 -MT patchelf.o -MD -MP -MF .deps/patchelf.Tpo -c -o patchelf.o patchelf.cc
            mv -f .deps/patchelf.Tpo .deps/patchelf.Po
            g++ -std=c++17 -Wall -std=c++17 -D_FILE_OFFSET_BITS=64     -g -O2   -o patchelf patchelf.o
            make[1]: Leaving directory '/data/data/com.termux/files/usr/tmp/pip-install-qa3ercoq/patchelf_a4f55e4e6872436da81e30e2708da6e3/src/patchelf-upstream/src'
            Making check in tests
            make[1]: Entering directory '/data/data/com.termux/files/usr/tmp/pip-install-qa3ercoq/patchelf_a4f55e4e6872436da81e30e2708da6e3/src/patchelf-upstream/tests'
            /data/data/com.termux/files/usr/bin/make  simple-pie simple main too-many-strtab main-scoped big-dynstr no-rpath contiguous-note-sections libfoo.so libfoo-scoped.so libbar.so libbar-scoped.so libsimple.so libbuildid.so libtoomanystrtab.so phdr-corruption.so libbig-dynstr.debug
            make[2]: Entering directory '/data/data/com.termux/files/usr/tmp/pip-install-qa3ercoq/patchelf_a4f55e4e6872436da81e30e2708da6e3/src/patchelf-upstream/tests'
            gcc -DPACKAGE_NAME=\"patchelf\" -DPACKAGE_TARNAME=\"patchelf\" -DPACKAGE_VERSION=\"0.17.2\" -DPACKAGE_STRING=\"patchelf\ 0.17.2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"patchelf\" -DVERSION=\"0.17.2\" -DHAVE_CXX17=1 -I.    -fPIC -pie -g -O2 -MT simple_pie-simple.o -MD -MP -MF .deps/simple_pie-simple.Tpo -c -o simple_pie-simple.o `test -f 'simple.c' || echo './'`simple.c
            gcc: warning: argument unused during compilation: '-pie' [-Wunused-command-line-argument]
            mv -f .deps/simple_pie-simple.Tpo .deps/simple_pie-simple.Po
            gcc -fPIC -pie -g -O2   -o simple-pie simple_pie-simple.o
            gcc -DPACKAGE_NAME=\"patchelf\" -DPACKAGE_TARNAME=\"patchelf\" -DPACKAGE_VERSION=\"0.17.2\" -DPACKAGE_STRING=\"patchelf\ 0.17.2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"patchelf\" -DVERSION=\"0.17.2\" -DHAVE_CXX17=1 -I.     -g -O2 -MT simple-simple.o -MD -MP -MF .deps/simple-simple.Tpo -c -o simple-simple.o `test -f 'simple.c' || echo './'`simple.c
            mv -f .deps/simple-simple.Tpo .deps/simple-simple.Po
            gcc  -g -O2   -o simple simple-simple.o
            gcc -DPACKAGE_NAME=\"patchelf\" -DPACKAGE_TARNAME=\"patchelf\" -DPACKAGE_VERSION=\"0.17.2\" -DPACKAGE_STRING=\"patchelf\ 0.17.2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"patchelf\" -DVERSION=\"0.17.2\" -DHAVE_CXX17=1 -I.    -fpic -g -O2 -MT main.o -MD -MP -MF .deps/main.Tpo -c -o main.o main.c
            mv -f .deps/main.Tpo .deps/main.Po
            gcc -DPACKAGE_NAME=\"patchelf\" -DPACKAGE_TARNAME=\"patchelf\" -DPACKAGE_VERSION=\"0.17.2\" -DPACKAGE_STRING=\"patchelf\ 0.17.2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"patchelf\" -DVERSION=\"0.17.2\" -DHAVE_CXX17=1 -I.    -fpic -g -O2 -MT foo.o -MD -MP -MF .deps/foo.Tpo -c -o foo.o foo.c
            mv -f .deps/foo.Tpo .deps/foo.Po
            gcc -DPACKAGE_NAME=\"patchelf\" -DPACKAGE_TARNAME=\"patchelf\" -DPACKAGE_VERSION=\"0.17.2\" -DPACKAGE_STRING=\"patchelf\ 0.17.2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"patchelf\" -DVERSION=\"0.17.2\" -DHAVE_CXX17=1 -I.    -fpic -g -O2 -MT bar.o -MD -MP -MF .deps/bar.Tpo -c -o bar.o bar.c
            mv -f .deps/bar.Tpo .deps/bar.Po
            gcc -fpic -g -O2 -Wl,--disable-new-dtags -shared -L.  -Wl,-rpath,`pwd`/no-such-path  -o libbar.so bar.o
            gcc -fpic -g -O2 -Wl,--disable-new-dtags -shared -L.   -o libfoo.so foo.o -lbar
            gcc -fpic -g -O2 -Wl,--disable-new-dtags -Wl,-rpath-link=. -L.   -o main main.o -lfoo
            gcc -DPACKAGE_NAME=\"patchelf\" -DPACKAGE_TARNAME=\"patchelf\" -DPACKAGE_VERSION=\"0.17.2\" -DPACKAGE_STRING=\"patchelf\ 0.17.2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"patchelf\" -DVERSION=\"0.17.2\" -DHAVE_CXX17=1 -I.    -fpic -g -O2 -MT too-many-strtab.o -MD -MP -MF .deps/too-many-strtab.Tpo -c -o too-many-strtab.o too-many-strtab.c
            mv -f .deps/too-many-strtab.Tpo .deps/too-many-strtab.Po
            gcc  -g -O2 -c -o too-many-strtab2.o too-many-strtab2.s
            gcc -fpic -g -O2   -o too-many-strtab too-many-strtab.o too-many-strtab2.o
            gcc -fpic -g -O2 -Wl,--disable-new-dtags -shared -L.   -o libbar-scoped.so bar.o
            gcc -fpic -g -O2 -Wl,--disable-new-dtags -shared -L.   -o libfoo-scoped.so foo.o -lbar-scoped
            gcc -fpic -g -O2 -Wl,--disable-new-dtags -Wl,-rpath-link=. -L.   -o main-scoped main.o -lfoo-scoped
            cat main.c > big-dynstr.c
            i=1; while [ $i -le 2000 ]; do echo "void f$i(void) { };"; i=$(($i + 1)); done >> big-dynstr.c
            gcc -DPACKAGE_NAME=\"patchelf\" -DPACKAGE_TARNAME=\"patchelf\" -DPACKAGE_VERSION=\"0.17.2\" -DPACKAGE_STRING=\"patchelf\ 0.17.2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"patchelf\" -DVERSION=\"0.17.2\" -DHAVE_CXX17=1 -I.    -fpic -g -O2 -MT big-dynstr.o -MD -MP -MF .deps/big-dynstr.Tpo -c -o big-dynstr.o big-dynstr.c                                                              mv -f .deps/big-dynstr.Tpo .deps/big-dynstr.Po
            gcc -fpic -g -O2 -Wl,--disable-new-dtags -Wl,-rpath-link=. -L.   -o big-dynstr big-dynstr.o -lfoo
            gcc -DPACKAGE_NAME=\"patchelf\" -DPACKAGE_TARNAME=\"patchelf\" -DPACKAGE_VERSION=\"0.17.2\" -DPACKAGE_STRING=\"patchelf\ 0.17.2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"patchelf\" -DVERSION=\"0.17.2\" -DHAVE_CXX17=1 -I.     -g -O2 -MT no_rpath-no-rpath.o -MD -MP -MF .deps/no_rpath-no-rpath.Tpo -c -o no_rpath-no-rpath.o `test -f 'no-rpath.c' || echo './'`no-rpath.c
            mv -f .deps/no_rpath-no-rpath.Tpo .deps/no_rpath-no-rpath.Po
            gcc  -g -O2   -o no-rpath no_rpath-no-rpath.o                     gcc  -g -O2 -c -o contiguous-note-sections.o contiguous-note-sections.s                                                             gcc -pie -g -O2 -nostdlib -T ./contiguous-note-sections.ld  -o contiguous-note-sections contiguous-note-sections.o                  ld.lld: warning: cannot find entry symbol _start; not setting start address
            make[2]: 'libfoo.so' is up to date.
            make[2]: 'libfoo-scoped.so' is up to date.
            make[2]: 'libbar.so' is up to date.                               make[2]: 'libbar-scoped.so' is up to date.
            gcc -DPACKAGE_NAME=\"patchelf\" -DPACKAGE_TARNAME=\"patchelf\" -DPACKAGE_VERSION=\"0.17.2\" -DPACKAGE_STRING=\"patchelf\ 0.17.2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"patchelf\" -DVERSION=\"0.17.2\" -DHAVE_CXX17=1 -I.    -fpic -g -O2 -MT simple.o -MD -MP -MF .deps/simple.Tpo -c -o simple.o simple.c
            mv -f .deps/simple.Tpo .deps/simple.Po
            gcc -fpic -g -O2 -Wl,--disable-new-dtags -shared -L.   -o libsimple.so simple.o
            gcc -fpic -g -O2 -Wl,--disable-new-dtags -shared -L.  -Wl,--build-id  -o libbuildid.so simple.o                                     gcc -fpic -g -O2 -Wl,--disable-new-dtags -shared -L.   -o libtoomanystrtab.so too-many-strtab.o too-many-strtab2.o
            gcc -DPACKAGE_NAME=\"patchelf\" -DPACKAGE_TARNAME=\"patchelf\" -DPACKAGE_VERSION=\"0.17.2\" -DPACKAGE_STRING=\"patchelf\ 0.17.2\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DPACKAGE=\"patchelf\" -DVERSION=\"0.17.2\" -DHAVE_CXX17=1 -I.     -g -O2 -MT phdr_corruption_so-void.o -MD -MP -MF .deps/phdr_corruption_so-void.Tpo -c -o phdr_corruption_so-void.o `test -f 'void.c' || echo './'`void.c
            mv -f .deps/phdr_corruption_so-void.Tpo .deps/phdr_corruption_so-void.Po
            gcc  -g -O2 -nostdlib -shared -Wl,-T./phdr-corruption.ld  -o phdr-corruption.so phdr_corruption_so-void.o
            gcc -fPIC -shared -o libbig-dynstr.so big-dynstr.c
            only-keep-debug libbig-dynstr.so -o libbig-dynstr.debug                                                                             make[2]: only-keep-debug: No such file or directory
            make[2]: [Makefile:1615: libbig-dynstr.debug] Error 127 (ignored)                                                                   make[2]: Leaving directory '/data/data/com.termux/files/usr/tmp/pip-install-qa3ercoq/patchelf_a4f55e4e6872436da81e30e2708da6e3/src/patchelf-upstream/tests'                                           /data/data/com.termux/files/usr/bin/make  check-TESTS
            make[2]: Entering directory '/data/data/com.termux/files/usr/tmp/pip-install-qa3ercoq/patchelf_a4f55e4e6872436da81e30e2708da6e3/src/patchelf-upstream/tests'                                          only-keep-debug libbig-dynstr.so -o libbig-dynstr.debug                                                                             make[2]: only-keep-debug: No such file or directory
            make[2]: [Makefile:1615: libbig-dynstr.debug] Error 127 (ignored)
            make[3]: Entering directory '/data/data/com.termux/files/usr/tmp/pip-install-qa3ercoq/patchelf_a4f55e4e6872436da81e30e2708da6e3/src/patchelf-upstream/tests'
            PASS: plain-fail.sh
            PASS: plain-run.sh
            PASS: shrink-rpath.sh
            PASS: set-interpreter-short.sh
            FAIL: set-interpreter-long.sh                                     FAIL: set-rpath.sh
            FAIL: add-rpath.sh                                                FAIL: no-rpath.sh
            FAIL: big-dynstr.sh
            PASS: set-rpath-library.sh
            PASS: soname.sh
            PASS: shrink-rpath-with-allowed-prefixes.sh                       PASS: set-rpath-rel-map.sh
            FAIL: force-rpath.sh                                              PASS: plain-needed.sh
            FAIL: output-flag.sh                                              PASS: too-many-strtab.sh
            FAIL: no-rpath-pie-powerpc.sh                                     FAIL: build-id.sh
            PASS: invalid-elf.sh                                              PASS: endianness.sh
            PASS: contiguous-note-sections.sh
            FAIL: no-gnu-hash.sh                                              PASS: change-abi.sh
            PASS: grow-file.sh                                                FAIL: no-dynamic-section.sh
            PASS: args-from-file.sh
            PASS: basic-flags.sh
            PASS: set-empty-rpath.sh                                          FAIL: phdr-corruption.sh
            FAIL: replace-needed.sh                                           FAIL: replace-add-needed.sh
            FAIL: add-debug-tag.sh
            PASS: empty-note.sh
            PASS: no-rpath-amd64.sh
            PASS: no-rpath-armel.sh
            PASS: no-rpath-armhf.sh
            PASS: no-rpath-hurd-i386.sh
            PASS: no-rpath-i386.sh
            PASS: no-rpath-ia64.sh
            PASS: no-rpath-kfreebsd-amd64.sh                                  PASS: no-rpath-kfreebsd-i386.sh
            PASS: no-rpath-mips.sh
            PASS: no-rpath-mipsel.sh
            PASS: no-rpath-powerpc.sh
            PASS: no-rpath-s390.sh
            PASS: no-rpath-sh4.sh
            PASS: no-rpath-sparc.sh                                           ============================================================================
            Testsuite summary for patchelf 0.17.2            # TOTAL: 48
            # PASS:  33                                                       # SKIP:  0
            # XFAIL: 0
            # FAIL:  15
            # XPASS: 0
            # ERROR: 0            See tests/test-suite.log            make[3]: *** [Makefile:944: test-suite.log] Error 1
            make[3]: Leaving directory '/data/data/com.termux/files/usr/tmp/pip-install-qa3ercoq/patchelf_a4f55e4e6872436da81e30e2708da6e3/src/patchelf-upstream/tests'
            make[2]: *** [Makefile:1052: check-TESTS] Error 2
            make[2]: Leaving directory '/data/data/com.termux/files/usr/tmp/pip-install-qa3ercoq/patchelf_a4f55e4e6872436da81e30e2708da6e3/src/patchelf-upstream/tests'                                           make[1]: *** [Makefile:1454: check-am] Error 2
            make[1]: Leaving directory '/data/data/com.termux/files/usr/tmp/pip-install-qa3ercoq/patchelf_a4f55e4e6872436da81e30e2708da6e3/src/patchelf-upstream/tests'
            make: *** [Makefile:447: check-recursive] Error 1
            ninja: build stopped: subcommand failed.
            Traceback (most recent call last):
              File "/data/data/com.termux/files/usr/tmp/pip-build-env-j1_i1fdp/overlay/lib/python3.11/site-packages/skbuild/setuptools_wrap.py", line 674, in setup
                cmkr.make(make_args, install_target=cmake_install_target, env=env)                                                                File "/data/data/com.termux/files/usr/tmp/pip-build-env-j1_i1fdp/overlay/lib/python3.11/site-packages/skbuild/cmaker.py", line 697, in make
                self.make_impl(clargs=clargs, config=config, source_dir=source_dir, install_target=install_target, env=env)
              File "/data/data/com.termux/files/usr/tmp/pip-build-env-j1_i1fdp/overlay/lib/python3.11/site-packages/skbuild/cmaker.py", line 742, in make_impl
                raise SKBuildError(msg)

            An error occurred while building with CMake.
              Command:
                /data/data/com.termux/files/usr/bin/cmake --build . --target install --config Release --                                          Install target:
                install                                                         Source directory:
                /data/data/com.termux/files/usr/tmp/pip-install-qa3ercoq/patchelf_a4f55e4e6872436da81e30e2708da6e3
              Working directory:                                                  /data/data/com.termux/files/usr/tmp/pip-install-qa3ercoq/patchelf_a4f55e4e6872436da81e30e2708da6e3/_skbuild/linux-aarch64-3.11/cmake-build
            Please check the install target is valid and see CMake's output for more information.

            [end of output]

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

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

× pip subprocess to install backend dependencies 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.

我很茫然。检查后,cmake 似乎已安装(我再次更新并升级了软件包只是为了确保)。我也考虑过更新 pip,但它似乎在 Termux 上被禁止,由于某种原因与 python-pip 包有关,但我找不到更多关于它的信息,至少与类似的错误相关。为了澄清其他一些事情,我安装 numpy (和其他软件包)的所有尝试都是直接在 Termux 控制台上完成的,所以我不认为 NVChad 是其中的幕后黑手。

如果有人能提供帮助,我将不胜感激。我很乐意根据您的要求提供任何进一步的信息。帮助我堆栈溢出!你是我唯一的希望!

PS:抱歉英语不好,不是母语人士。

python android cmake pip termux
1个回答
0
投票

我想那是因为你的设备没有root。

© www.soinside.com 2019 - 2024. All rights reserved.