質問をすることでしか得られない、回答やアドバイスがある。

15分調べてもわからないことは、質問しよう!

新規登録して質問してみよう
ただいま回答率
85.48%
GCC

GCCはGNU Compiler Collectionの略です。LinuxのC言語コンパイラのデファクトスタンダードであり、数多くの他言語やプラットフォームサポートもします。

Ubuntu

Ubuntuは、Debian GNU/Linuxを基盤としたフリーのオペレーティングシステムです。

VirtualBox

VirtualBoxは、現在米オラクル社が開発している、 x86仮想化ソフトウェア・パッケージの一つです。

Python

Pythonは、コードの読みやすさが特徴的なプログラミング言語の1つです。 強い型付け、動的型付けに対応しており、後方互換性がないバージョン2系とバージョン3系が使用されています。 商用製品の開発にも無料で使用でき、OSだけでなく仮想環境にも対応。Unicodeによる文字列操作をサポートしているため、日本語処理も標準で可能です。

pip

pipとは、Pythonを用いて書かれているパッケージソフトのインストールや管理を行うためのパッケージマネジメントシステムです。pipを使う主なメリットは、コマンドラインインターフェースにて容易にPythonパッケージソフトをインストール可能だという点です。

Q&A

1回答

6949閲覧

ubuntuのpip install で gcc エラーになる

groggy_egg

総合スコア24

GCC

GCCはGNU Compiler Collectionの略です。LinuxのC言語コンパイラのデファクトスタンダードであり、数多くの他言語やプラットフォームサポートもします。

Ubuntu

Ubuntuは、Debian GNU/Linuxを基盤としたフリーのオペレーティングシステムです。

VirtualBox

VirtualBoxは、現在米オラクル社が開発している、 x86仮想化ソフトウェア・パッケージの一つです。

Python

Pythonは、コードの読みやすさが特徴的なプログラミング言語の1つです。 強い型付け、動的型付けに対応しており、後方互換性がないバージョン2系とバージョン3系が使用されています。 商用製品の開発にも無料で使用でき、OSだけでなく仮想環境にも対応。Unicodeによる文字列操作をサポートしているため、日本語処理も標準で可能です。

pip

pipとは、Pythonを用いて書かれているパッケージソフトのインストールや管理を行うためのパッケージマネジメントシステムです。pipを使う主なメリットは、コマンドラインインターフェースにて容易にPythonパッケージソフトをインストール可能だという点です。

0グッド

0クリップ

投稿2020/05/22 13:47

Ubuntu(VirtualBox)でKivyを入れようと思い
Cythonを入れようとしたところエラーになりました

$ sudo -H pip install cython==0.21 Collecting cython==0.21 Using cached Cython-0.21.tar.gz (1.5 MB) Could not build wheels for cython, since package 'wheel' is not installed. Installing collected packages: cython Running setup.py install for cython ... error ERROR: Command errored out with exit status 1: command: /usr/local/bin/python3.8 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-2mao7mgx/cython/setup.py'"'"'; __file__='"'"'/tmp/pip-install-2mao7mgx/cython/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /tmp/pip-record-qt2eicue/install-record.txt --single-version-externally-managed --compile --install-headers /usr/local/include/python3.8/cython cwd: /tmp/pip-install-2mao7mgx/cython/ Complete output (482 lines): : /tmp/pip-install-2mao7mgx/cython/Cython/Compiler/Scanning.c:15396:11: error: ‘PyThreadState {aka struct _ts}’ has no member named ‘exc_traceback’ tstate->exc_traceback = *tb; ^ error: command 'gcc' failed with exit status 1 ---------------------------------------- ERROR: Command errored out with exit status 1: /usr/local/bin/python3.8 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-2mao7mgx/cython/setup.py'"'"'; __file__='"'"'/tmp/pip-install-2mao7mgx/cython/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /tmp/pip-record-qt2eicue/install-record.txt --single-version-externally-managed --compile --install-headers /usr/local/include/python3.8/cython Check the logs for full command output. WARNING: You are using pip version 20.1; however, version 20.1.1 is available. You should consider upgrading via the '/usr/local/bin/python3.8 -m pip install --upgrade pip' command.

エラーの行数が多いので省略してあります。

Ubuntuのバージョン:"16.04.6 LTS (Xenial Xerus)"
gccのバージョン:5.4.0 20160609
setuptoolsのバージョン:44.1.0
pipのバージョン:20.1.1

参考 +etc

  • pipのアップデート
  • setuptoolsのアップデート
  • python-devのインストール

をしましたが直りませんでした

$ which gcc /usr/bin/gcc
gccの場所も問題ないように思え、gcc --versionもできるのですが
何がおかしいのでしょうか?

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

hayataka2049

2020/05/22 21:52

省略した部分も示してください。
groggy_egg

2020/05/22 23:12

全文です ``` $ sudo -H pip install cython==0.21 [sudo] ubun のパスワード: Collecting cython==0.21 Using cached Cython-0.21.tar.gz (1.5 MB) Could not build wheels for cython, since package 'wheel' is not installed. Installing collected packages: cython Running setup.py install for cython ... error ERROR: Command errored out with exit status 1: command: /usr/local/bin/python3.8 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-uh571ujm/cython/setup.py'"'"'; __file__='"'"'/tmp/pip-install-uh571ujm/cython/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /tmp/pip-record-lo4he1e9/install-record.txt --single-version-externally-managed --compile --install-headers /usr/local/include/python3.8/cython cwd: /tmp/pip-install-uh571ujm/cython/ Complete output (482 lines): running install running build running build_py creating build creating build/lib.linux-x86_64-3.8 copying cython.py -> build/lib.linux-x86_64-3.8 creating build/lib.linux-x86_64-3.8/Cython copying Cython/__init__.py -> build/lib.linux-x86_64-3.8/Cython copying Cython/StringIOTree.py -> build/lib.linux-x86_64-3.8/Cython copying Cython/TestUtils.py -> build/lib.linux-x86_64-3.8/Cython copying Cython/Shadow.py -> build/lib.linux-x86_64-3.8/Cython copying Cython/Utils.py -> build/lib.linux-x86_64-3.8/Cython copying Cython/Debugging.py -> build/lib.linux-x86_64-3.8/Cython copying Cython/CodeWriter.py -> build/lib.linux-x86_64-3.8/Cython creating build/lib.linux-x86_64-3.8/Cython/Build copying Cython/Build/IpythonMagic.py -> build/lib.linux-x86_64-3.8/Cython/Build copying Cython/Build/__init__.py -> build/lib.linux-x86_64-3.8/Cython/Build copying Cython/Build/Inline.py -> build/lib.linux-x86_64-3.8/Cython/Build copying Cython/Build/Cythonize.py -> build/lib.linux-x86_64-3.8/Cython/Build copying Cython/Build/BuildExecutable.py -> build/lib.linux-x86_64-3.8/Cython/Build copying Cython/Build/Dependencies.py -> build/lib.linux-x86_64-3.8/Cython/Build creating build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/ParseTreeTransforms.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/ModuleNode.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Annotate.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Main.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/DebugFlags.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/UtilityCode.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/AutoDocTransforms.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Options.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Future.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/TreePath.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Version.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/AnalysedTreeTransforms.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/TypeInference.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Buffer.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/__init__.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/TreeFragment.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/FlowControl.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/ExprNodes.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/CodeGeneration.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/MemoryView.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Errors.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Pipeline.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Builtin.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/CmdLine.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Parsing.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/CythonScope.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Nodes.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/PyrexTypes.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Code.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/StringEncoding.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/UtilNodes.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Visitor.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Scanning.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Interpreter.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Lexicon.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/FusedNode.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Optimize.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/TypeSlots.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Naming.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Symtab.py -> build/lib.linux-x86_64-3.8/Cython/Compiler creating build/lib.linux-x86_64-3.8/Cython/Runtime copying Cython/Runtime/__init__.py -> build/lib.linux-x86_64-3.8/Cython/Runtime creating build/lib.linux-x86_64-3.8/Cython/Distutils copying Cython/Distutils/build_ext.py -> build/lib.linux-x86_64-3.8/Cython/Distutils copying Cython/Distutils/__init__.py -> build/lib.linux-x86_64-3.8/Cython/Distutils copying Cython/Distutils/extension.py -> build/lib.linux-x86_64-3.8/Cython/Distutils creating build/lib.linux-x86_64-3.8/Cython/Plex copying Cython/Plex/Traditional.py -> build/lib.linux-x86_64-3.8/Cython/Plex copying Cython/Plex/__init__.py -> build/lib.linux-x86_64-3.8/Cython/Plex copying Cython/Plex/Transitions.py -> build/lib.linux-x86_64-3.8/Cython/Plex copying Cython/Plex/Errors.py -> build/lib.linux-x86_64-3.8/Cython/Plex copying Cython/Plex/Machines.py -> build/lib.linux-x86_64-3.8/Cython/Plex copying Cython/Plex/Lexicons.py -> build/lib.linux-x86_64-3.8/Cython/Plex copying Cython/Plex/Regexps.py -> build/lib.linux-x86_64-3.8/Cython/Plex copying Cython/Plex/Timing.py -> build/lib.linux-x86_64-3.8/Cython/Plex copying Cython/Plex/Actions.py -> build/lib.linux-x86_64-3.8/Cython/Plex copying Cython/Plex/DFA.py -> build/lib.linux-x86_64-3.8/Cython/Plex copying Cython/Plex/Scanners.py -> build/lib.linux-x86_64-3.8/Cython/Plex creating build/lib.linux-x86_64-3.8/Cython/Tests copying Cython/Tests/TestStringIOTree.py -> build/lib.linux-x86_64-3.8/Cython/Tests copying Cython/Tests/TestJediTyper.py -> build/lib.linux-x86_64-3.8/Cython/Tests copying Cython/Tests/__init__.py -> build/lib.linux-x86_64-3.8/Cython/Tests copying Cython/Tests/xmlrunner.py -> build/lib.linux-x86_64-3.8/Cython/Tests copying Cython/Tests/TestCodeWriter.py -> build/lib.linux-x86_64-3.8/Cython/Tests creating build/lib.linux-x86_64-3.8/Cython/Build/Tests copying Cython/Build/Tests/TestIpythonMagic.py -> build/lib.linux-x86_64-3.8/Cython/Build/Tests copying Cython/Build/Tests/TestStripLiterals.py -> build/lib.linux-x86_64-3.8/Cython/Build/Tests copying Cython/Build/Tests/__init__.py -> build/lib.linux-x86_64-3.8/Cython/Build/Tests copying Cython/Build/Tests/TestInline.py -> build/lib.linux-x86_64-3.8/Cython/Build/Tests creating build/lib.linux-x86_64-3.8/Cython/Compiler/Tests copying Cython/Compiler/Tests/TestParseTreeTransforms.py -> build/lib.linux-x86_64-3.8/Cython/Compiler/Tests copying Cython/Compiler/Tests/TestVisitor.py -> build/lib.linux-x86_64-3.8/Cython/Compiler/Tests copying Cython/Compiler/Tests/TestBuffer.py -> build/lib.linux-x86_64-3.8/Cython/Compiler/Tests copying Cython/Compiler/Tests/TestMemView.py -> build/lib.linux-x86_64-3.8/Cython/Compiler/Tests copying Cython/Compiler/Tests/__init__.py -> build/lib.linux-x86_64-3.8/Cython/Compiler/Tests copying Cython/Compiler/Tests/TestTreePath.py -> build/lib.linux-x86_64-3.8/Cython/Compiler/Tests copying Cython/Compiler/Tests/TestSignatureMatching.py -> build/lib.linux-x86_64-3.8/Cython/Compiler/Tests copying Cython/Compiler/Tests/TestTreeFragment.py -> build/lib.linux-x86_64-3.8/Cython/Compiler/Tests copying Cython/Compiler/Tests/TestUtilityLoad.py -> build/lib.linux-x86_64-3.8/Cython/Compiler/Tests creating build/lib.linux-x86_64-3.8/Cython/Utility copying Cython/Utility/__init__.py -> build/lib.linux-x86_64-3.8/Cython/Utility creating build/lib.linux-x86_64-3.8/Cython/Tempita copying Cython/Tempita/_looper.py -> build/lib.linux-x86_64-3.8/Cython/Tempita copying Cython/Tempita/__init__.py -> build/lib.linux-x86_64-3.8/Cython/Tempita copying Cython/Tempita/_tempita.py -> build/lib.linux-x86_64-3.8/Cython/Tempita copying Cython/Tempita/compat3.py -> build/lib.linux-x86_64-3.8/Cython/Tempita creating build/lib.linux-x86_64-3.8/pyximport copying pyximport/pyximport.py -> build/lib.linux-x86_64-3.8/pyximport copying pyximport/pyxbuild.py -> build/lib.linux-x86_64-3.8/pyximport copying pyximport/__init__.py -> build/lib.linux-x86_64-3.8/pyximport ```
groggy_egg

2020/05/22 23:17

続きます ``` creating build/lib.linux-x86_64-3.8/Cython/Debugger copying Cython/Debugger/libpython.py -> build/lib.linux-x86_64-3.8/Cython/Debugger copying Cython/Debugger/libcython.py -> build/lib.linux-x86_64-3.8/Cython/Debugger copying Cython/Debugger/__init__.py -> build/lib.linux-x86_64-3.8/Cython/Debugger copying Cython/Debugger/DebugWriter.py -> build/lib.linux-x86_64-3.8/Cython/Debugger copying Cython/Debugger/Cygdb.py -> build/lib.linux-x86_64-3.8/Cython/Debugger creating build/lib.linux-x86_64-3.8/Cython/Debugger/Tests copying Cython/Debugger/Tests/test_libcython_in_gdb.py -> build/lib.linux-x86_64-3.8/Cython/Debugger/Tests copying Cython/Debugger/Tests/__init__.py -> build/lib.linux-x86_64-3.8/Cython/Debugger/Tests copying Cython/Debugger/Tests/TestLibCython.py -> build/lib.linux-x86_64-3.8/Cython/Debugger/Tests copying Cython/Debugger/Tests/test_libpython_in_gdb.py -> build/lib.linux-x86_64-3.8/Cython/Debugger/Tests creating build/lib.linux-x86_64-3.8/Cython/Includes copying Cython/Includes/openmp.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes creating build/lib.linux-x86_64-3.8/Cython/Includes/libc copying Cython/Includes/libc/errno.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/libc copying Cython/Includes/libc/float.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/libc copying Cython/Includes/libc/limits.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/libc copying Cython/Includes/libc/setjmp.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/libc copying Cython/Includes/libc/stdint.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/libc copying Cython/Includes/libc/stdio.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/libc copying Cython/Includes/libc/stdlib.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/libc copying Cython/Includes/libc/signal.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/libc copying Cython/Includes/libc/__init__.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/libc copying Cython/Includes/libc/locale.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/libc copying Cython/Includes/libc/math.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/libc copying Cython/Includes/libc/string.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/libc copying Cython/Includes/libc/stddef.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/libc creating build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/version.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/datetime.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/float.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/weakref.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/ref.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/cobject.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/oldbuffer.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/function.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/object.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/set.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/list.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/iterator.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/long.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/type.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/buffer.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/bytes.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/tuple.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/array.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/dict.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/pycapsule.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/pystate.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/unicode.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/number.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/instance.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/getargs.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/bool.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/__init__.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/mapping.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/sequence.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/mem.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/int.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/string.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/module.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/pythread.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/complex.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/exc.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython copying Cython/Includes/cpython/method.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/cpython creating build/lib.linux-x86_64-3.8/Cython/Includes/numpy copying Cython/Includes/numpy/__init__.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/numpy copying Cython/Includes/numpy/math.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/numpy creating build/lib.linux-x86_64-3.8/Cython/Includes/posix copying Cython/Includes/posix/ioctl.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/posix copying Cython/Includes/posix/unistd.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/posix copying Cython/Includes/posix/resource.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/posix copying Cython/Includes/posix/stat.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/posix copying Cython/Includes/posix/stdlib.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/posix copying Cython/Includes/posix/signal.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/posix copying Cython/Includes/posix/types.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/posix copying Cython/Includes/posix/__init__.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/posix copying Cython/Includes/posix/fcntl.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/posix copying Cython/Includes/posix/time.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/posix creating build/lib.linux-x86_64-3.8/Cython/Includes/libcpp copying Cython/Includes/libcpp/queue.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/libcpp copying Cython/Includes/libcpp/algorithm.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/libcpp copying Cython/Includes/libcpp/cast.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/libcpp copying Cython/Includes/libcpp/unordered_set.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/libcpp copying Cython/Includes/libcpp/deque.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/libcpp copying Cython/Includes/libcpp/pair.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/libcpp copying Cython/Includes/libcpp/set.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/libcpp copying Cython/Includes/libcpp/list.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/libcpp copying Cython/Includes/libcpp/vector.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/libcpp copying Cython/Includes/libcpp/map.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/libcpp copying Cython/Includes/libcpp/stack.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/libcpp copying Cython/Includes/libcpp/unordered_map.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/libcpp copying Cython/Includes/libcpp/__init__.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/libcpp copying Cython/Includes/libcpp/utility.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/libcpp copying Cython/Includes/libcpp/string.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/libcpp copying Cython/Includes/libcpp/complex.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/libcpp creating build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_mapping.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_mem.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_sequence.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_instance.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_type.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated ```
groggy_egg

2020/05/22 23:23

``` copying Cython/Includes/Deprecated/python_complex.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_getargs.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_float.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_oldbuffer.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_exc.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_bool.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_list.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_function.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_bytes.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_cobject.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_dict.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_method.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_object.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_string.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_long.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_weakref.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_number.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_version.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/stdio.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_iterator.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_unicode.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/stdlib.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_int.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_ref.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_module.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python2.5.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_tuple.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/stl.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_pycapsule.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_buffer.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Includes/Deprecated/python_set.pxd -> build/lib.linux-x86_64-3.8/Cython/Includes/Deprecated copying Cython/Compiler/Parsing.pxd -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/ParseTreeTransforms.pxd -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Code.pxd -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/FlowControl.pxd -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Scanning.pxd -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Visitor.pxd -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Runtime/refnanny.pyx -> build/lib.linux-x86_64-3.8/Cython/Runtime copying Cython/Plex/Actions.pxd -> build/lib.linux-x86_64-3.8/Cython/Plex copying Cython/Plex/Scanners.pxd -> build/lib.linux-x86_64-3.8/Cython/Plex copying Cython/Utility/TestCyUtilityLoader.pyx -> build/lib.linux-x86_64-3.8/Cython/Utility copying Cython/Utility/CppConvert.pyx -> build/lib.linux-x86_64-3.8/Cython/Utility copying Cython/Utility/TestCythonScope.pyx -> build/lib.linux-x86_64-3.8/Cython/Utility copying Cython/Utility/MemoryView.pyx -> build/lib.linux-x86_64-3.8/Cython/Utility copying Cython/Utility/TestUtilityLoader.c -> build/lib.linux-x86_64-3.8/Cython/Utility copying Cython/Utility/Builtins.c -> build/lib.linux-x86_64-3.8/Cython/Utility copying Cython/Utility/FunctionArguments.c -> build/lib.linux-x86_64-3.8/Cython/Utility copying Cython/Utility/ExtensionTypes.c -> build/lib.linux-x86_64-3.8/Cython/Utility copying Cython/Utility/Profile.c -> build/lib.linux-x86_64-3.8/Cython/Utility copying Cython/Utility/StringTools.c -> build/lib.linux-x86_64-3.8/Cython/Utility copying Cython/Utility/Capsule.c -> build/lib.linux-x86_64-3.8/Cython/Utility copying Cython/Utility/Generator.c -> build/lib.linux-x86_64-3.8/Cython/Utility copying Cython/Utility/Embed.c -> build/lib.linux-x86_64-3.8/Cython/Utility copying Cython/Utility/Printing.c -> build/lib.linux-x86_64-3.8/Cython/Utility copying Cython/Utility/TypeConversion.c -> build/lib.linux-x86_64-3.8/Cython/Utility copying Cython/Utility/ObjectHandling.c -> build/lib.linux-x86_64-3.8/Cython/Utility copying Cython/Utility/Exceptions.c -> build/lib.linux-x86_64-3.8/Cython/Utility copying Cython/Utility/Buffer.c -> build/lib.linux-x86_64-3.8/Cython/Utility copying Cython/Utility/MemoryView_C.c -> build/lib.linux-x86_64-3.8/Cython/Utility copying Cython/Utility/CythonFunction.c -> build/lib.linux-x86_64-3.8/Cython/Utility copying Cython/Utility/Overflow.c -> build/lib.linux-x86_64-3.8/Cython/Utility copying Cython/Utility/CommonTypes.c -> build/lib.linux-x86_64-3.8/Cython/Utility copying Cython/Utility/ModuleSetupCode.c -> build/lib.linux-x86_64-3.8/Cython/Utility copying Cython/Utility/ImportExport.c -> build/lib.linux-x86_64-3.8/Cython/Utility copying Cython/Utility/Optimize.c -> build/lib.linux-x86_64-3.8/Cython/Utility copying Cython/Utility/arrayarray.h -> build/lib.linux-x86_64-3.8/Cython/Utility copying Cython/Utility/CppSupport.cpp -> build/lib.linux-x86_64-3.8/Cython/Utility copying Cython/Debugger/Tests/codefile -> build/lib.linux-x86_64-3.8/Cython/Debugger/Tests copying Cython/Debugger/Tests/cfuncs.c -> build/lib.linux-x86_64-3.8/Cython/Debugger/Tests Skipping optional fixer: buffer Skipping optional fixer: idioms Skipping optional fixer: set_literal Skipping optional fixer: ws_comma running build_ext cythoning /tmp/pip-install-uh571ujm/cython/Cython/Plex/Scanners.py to /tmp/pip-install-uh571ujm/cython/Cython/Plex/Scanners.c building 'Cython.Plex.Scanners' extension creating build/temp.linux-x86_64-3.8 creating build/temp.linux-x86_64-3.8/tmp creating build/temp.linux-x86_64-3.8/tmp/pip-install-uh571ujm creating build/temp.linux-x86_64-3.8/tmp/pip-install-uh571ujm/cython creating build/temp.linux-x86_64-3.8/tmp/pip-install-uh571ujm/cython/Cython creating build/temp.linux-x86_64-3.8/tmp/pip-install-uh571ujm/cython/Cython/Plex gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I/usr/local/include/python3.8 -c /tmp/pip-install-uh571ujm/cython/Cython/Plex/Scanners.c -o build/temp.linux-x86_64-3.8/tmp/pip-install-uh571ujm/cython/Cython/Plex/Scanners.o /tmp/pip-install-uh571ujm/cython/Cython/Plex/Scanners.c: In function ‘PyInit_Scanners’: /tmp/pip-install-uh571ujm/cython/Cython/Plex/Scanners.c:6403:3: warning: ‘tp_print’ is deprecated [-Wdeprecated-declarations] __pyx_type_6Cython_4Plex_8Scanners_Scanner.tp_print = 0; ^ In file included from /usr/local/include/python3.8/object.h:746:0, from /usr/local/include/python3.8/pytime.h:6, from /usr/local/include/python3.8/Python.h:85, from /tmp/pip-install-uh571ujm/cython/Cython/Plex/Scanners.c:16: /usr/local/include/python3.8/cpython/object.h:260:30: note: declared here Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int); ^ gcc -pthread -shared build/temp.linux-x86_64-3.8/tmp/pip-install-uh571ujm/cython/Cython/Plex/Scanners.o -L/usr/local/lib -o build/lib.linux-x86_64-3.8/Cython/Plex/Scanners.cpython-38-x86_64-linux-gnu.so cythoning /tmp/pip-install-uh571ujm/cython/Cython/Plex/Actions.py to /tmp/pip-install-uh571ujm/cython/Cython/Plex/Actions.c building 'Cython.Plex.Actions' extension gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I/usr/local/include/python3.8 -c /tmp/pip-install-uh571ujm/cython/Cython/Plex/Actions.c -o build/temp.linux-x86_64-3.8/tmp/pip-install-uh571ujm/cython/Cython/Plex/Actions.o /tmp/pip-install-uh571ujm/cython/Cython/Plex/Actions.c: In function ‘PyInit_Actions’: /tmp/pip-install-uh571ujm/cython/Cython/Plex/Actions.c:2976:3: warning: ‘tp_print’ is deprecated [-Wdeprecated-declarations] __pyx_type_6Cython_4Plex_7Actions_Action.tp_print = 0; ^ ```
groggy_egg

2020/05/22 23:24

``` In file included from /usr/local/include/python3.8/object.h:746:0, from /usr/local/include/python3.8/pytime.h:6, from /usr/local/include/python3.8/Python.h:85, from /tmp/pip-install-uh571ujm/cython/Cython/Plex/Actions.c:16: /usr/local/include/python3.8/cpython/object.h:260:30: note: declared here Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int); ^ /tmp/pip-install-uh571ujm/cython/Cython/Plex/Actions.c:2986:3: warning: ‘tp_print’ is deprecated [-Wdeprecated-declarations] __pyx_type_6Cython_4Plex_7Actions_Return.tp_print = 0; ^ In file included from /usr/local/include/python3.8/object.h:746:0, from /usr/local/include/python3.8/pytime.h:6, from /usr/local/include/python3.8/Python.h:85, from /tmp/pip-install-uh571ujm/cython/Cython/Plex/Actions.c:16: /usr/local/include/python3.8/cpython/object.h:260:30: note: declared here Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int); ^ /tmp/pip-install-uh571ujm/cython/Cython/Plex/Actions.c:2996:3: warning: ‘tp_print’ is deprecated [-Wdeprecated-declarations] __pyx_type_6Cython_4Plex_7Actions_Call.tp_print = 0; ^ In file included from /usr/local/include/python3.8/object.h:746:0, from /usr/local/include/python3.8/pytime.h:6, from /usr/local/include/python3.8/Python.h:85, from /tmp/pip-install-uh571ujm/cython/Cython/Plex/Actions.c:16: /usr/local/include/python3.8/cpython/object.h:260:30: note: declared here Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int); ^ /tmp/pip-install-uh571ujm/cython/Cython/Plex/Actions.c:3006:3: warning: ‘tp_print’ is deprecated [-Wdeprecated-declarations] __pyx_type_6Cython_4Plex_7Actions_Begin.tp_print = 0; ^ In file included from /usr/local/include/python3.8/object.h:746:0, from /usr/local/include/python3.8/pytime.h:6, from /usr/local/include/python3.8/Python.h:85, from /tmp/pip-install-uh571ujm/cython/Cython/Plex/Actions.c:16: /usr/local/include/python3.8/cpython/object.h:260:30: note: declared here Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int); ^ /tmp/pip-install-uh571ujm/cython/Cython/Plex/Actions.c:3015:3: warning: ‘tp_print’ is deprecated [-Wdeprecated-declarations] __pyx_type_6Cython_4Plex_7Actions_Ignore.tp_print = 0; ^ In file included from /usr/local/include/python3.8/object.h:746:0, from /usr/local/include/python3.8/pytime.h:6, from /usr/local/include/python3.8/Python.h:85, from /tmp/pip-install-uh571ujm/cython/Cython/Plex/Actions.c:16: /usr/local/include/python3.8/cpython/object.h:260:30: note: declared here Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int); ^ /tmp/pip-install-uh571ujm/cython/Cython/Plex/Actions.c:3024:3: warning: ‘tp_print’ is deprecated [-Wdeprecated-declarations] __pyx_type_6Cython_4Plex_7Actions_Text.tp_print = 0; ^ In file included from /usr/local/include/python3.8/object.h:746:0, from /usr/local/include/python3.8/pytime.h:6, from /usr/local/include/python3.8/Python.h:85, from /tmp/pip-install-uh571ujm/cython/Cython/Plex/Actions.c:16: /usr/local/include/python3.8/cpython/object.h:260:30: note: declared here Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int); ^ gcc -pthread -shared build/temp.linux-x86_64-3.8/tmp/pip-install-uh571ujm/cython/Cython/Plex/Actions.o -L/usr/local/lib -o build/lib.linux-x86_64-3.8/Cython/Plex/Actions.cpython-38-x86_64-linux-gnu.so cythoning /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Lexicon.py to /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Lexicon.c building 'Cython.Compiler.Lexicon' extension creating build/temp.linux-x86_64-3.8/tmp/pip-install-uh571ujm/cython/Cython/Compiler gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I/usr/local/include/python3.8 -c /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Lexicon.c -o build/temp.linux-x86_64-3.8/tmp/pip-install-uh571ujm/cython/Cython/Compiler/Lexicon.o gcc -pthread -shared build/temp.linux-x86_64-3.8/tmp/pip-install-uh571ujm/cython/Cython/Compiler/Lexicon.o -L/usr/local/lib -o build/lib.linux-x86_64-3.8/Cython/Compiler/Lexicon.cpython-38-x86_64-linux-gnu.so cythoning /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.py to /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c building 'Cython.Compiler.Scanning' extension gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I/usr/local/include/python3.8 -c /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c -o build/temp.linux-x86_64-3.8/tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.o /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c: In function ‘PyInit_Scanning’: /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c:13733:3: warning: ‘tp_print’ is deprecated [-Wdeprecated-declarations] __pyx_type_6Cython_8Compiler_8Scanning_Method.tp_print = 0; ^ In file included from /usr/local/include/python3.8/object.h:746:0, from /usr/local/include/python3.8/pytime.h:6, from /usr/local/include/python3.8/Python.h:85, from /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c:16: /usr/local/include/python3.8/cpython/object.h:260:30: note: declared here Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int); ^ /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c:13741:3: warning: ‘tp_print’ is deprecated [-Wdeprecated-declarations] __pyx_type_6Cython_8Compiler_8Scanning_CompileTimeScope.tp_print = 0; ^ In file included from /usr/local/include/python3.8/object.h:746:0, from /usr/local/include/python3.8/pytime.h:6, from /usr/local/include/python3.8/Python.h:85, from /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c:16: /usr/local/include/python3.8/cpython/object.h:260:30: note: declared here Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int); ^ /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c:13761:3: warning: ‘tp_print’ is deprecated [-Wdeprecated-declarations] __pyx_type_6Cython_8Compiler_8Scanning_PyrexScanner.tp_print = 0; ^ In file included from /usr/local/include/python3.8/object.h:746:0, from /usr/local/include/python3.8/pytime.h:6, from /usr/local/include/python3.8/Python.h:85, from /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c:16: /usr/local/include/python3.8/cpython/object.h:260:30: note: declared here Py_DEPRECATED(3.8) int (*tp_print)(PyObject *, FILE *, int); ^ /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c: In function ‘__Pyx_ExceptionSave’: /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c:14998:19: error: ‘PyThreadState {aka struct _ts}’ has no member named ‘exc_type’ *type = tstate->exc_type; ^ /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c:14999:20: error: ‘PyThreadState {aka struct _ts}’ has no member named ‘exc_value’ *value = tstate->exc_value; ^ /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c:15000:17: error: ‘PyThreadState {aka struct _ts}’ has no member named ‘exc_traceback’ *tb = tstate->exc_traceback; ^ /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c: In function ‘__Pyx_ExceptionReset’: /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c:15012:22: error: ‘PyThreadState {aka struct _ts}’ has no member named ‘exc_type’ tmp_type = tstate->exc_type; ^ /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c:15013:23: error: ‘PyThreadState {aka struct _ts}’ has no member named ‘exc_value’ tmp_value = tstate->exc_value; ^ /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c:15014:20: error: ‘PyThreadState {aka struct _ts}’ has no member named ‘exc_traceback’ tmp_tb = tstate->exc_traceback; ^ /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c:15015:11: error: ‘PyThreadState {aka struct _ts}’ has no member named ‘exc_type’ tstate->exc_type = type; ^ /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c:15016:11: error: ‘PyThreadState {aka struct _ts}’ has no member named ‘exc_value’ tstate->exc_value = value; ^ /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c:15017:11: error: ‘PyThreadState {aka struct _ts}’ has no member named ‘exc_traceback’ tstate->exc_traceback = tb; ^ /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c: In function ‘__Pyx_GetException’: /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c:15060:22: error: ‘PyThreadState {aka struct _ts}’ has no member named ‘exc_type’ tmp_type = tstate->exc_type; ^ ```
groggy_egg

2020/05/22 23:25

``` /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c:15061:23: error: ‘PyThreadState {aka struct _ts}’ has no member named ‘exc_value’ tmp_value = tstate->exc_value; ^ /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c:15062:20: error: ‘PyThreadState {aka struct _ts}’ has no member named ‘exc_traceback’ tmp_tb = tstate->exc_traceback; ^ /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c:15063:11: error: ‘PyThreadState {aka struct _ts}’ has no member named ‘exc_type’ tstate->exc_type = local_type; ^ /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c:15064:11: error: ‘PyThreadState {aka struct _ts}’ has no member named ‘exc_value’ tstate->exc_value = local_value; ^ /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c:15065:11: error: ‘PyThreadState {aka struct _ts}’ has no member named ‘exc_traceback’ tstate->exc_traceback = local_tb; ^ /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c: In function ‘__Pyx_ExceptionSwap’: /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c:15391:22: error: ‘PyThreadState {aka struct _ts}’ has no member named ‘exc_type’ tmp_type = tstate->exc_type; ^ /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c:15392:23: error: ‘PyThreadState {aka struct _ts}’ has no member named ‘exc_value’ tmp_value = tstate->exc_value; ^ /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c:15393:20: error: ‘PyThreadState {aka struct _ts}’ has no member named ‘exc_traceback’ tmp_tb = tstate->exc_traceback; ^ /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c:15394:11: error: ‘PyThreadState {aka struct _ts}’ has no member named ‘exc_type’ tstate->exc_type = *type; ^ /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c:15395:11: error: ‘PyThreadState {aka struct _ts}’ has no member named ‘exc_value’ tstate->exc_value = *value; ^ /tmp/pip-install-uh571ujm/cython/Cython/Compiler/Scanning.c:15396:11: error: ‘PyThreadState {aka struct _ts}’ has no member named ‘exc_traceback’ tstate->exc_traceback = *tb; ^ error: command 'gcc' failed with exit status 1 ---------------------------------------- ERROR: Command errored out with exit status 1: /usr/local/bin/python3.8 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-uh571ujm/cython/setup.py'"'"'; __file__='"'"'/tmp/pip-install-uh571ujm/cython/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /tmp/pip-record-lo4he1e9/install-record.txt --single-version-externally-managed --compile --install-headers /usr/local/include/python3.8/cython Check the logs for full command output. WARNING: You are using pip version 20.1; however, version 20.1.1 is available. You should consider upgrading via the '/usr/local/bin/python3.8 -m pip install --upgrade pip' command. ``` 以上です
guest

回答1

0

Could not build wheels for cython, since package 'wheel' is not installed.

パッケージ「wheel」が無いエラーなので、インストールしてみてください。

投稿2020/05/22 23:44

technocore

総合スコア7225

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

groggy_egg

2020/05/23 00:19

またエラーになりました $ sudo -H pip install wheel Collecting wheel Downloading wheel-0.34.2-py2.py3-none-any.whl (26 kB) Installing collected packages: wheel Successfully installed wheel-0.34.2 $ sudo -H pip install cython==0.21 Collecting cython==0.21 Using cached Cython-0.21.tar.gz (1.5 MB) Building wheels for collected packages: cython Building wheel for cython (setup.py) ... error ERROR: Command errored out with exit status 1: command: /usr/local/bin/python3.8 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-i_krx6kt/cython/setup.py'"'"'; __file__='"'"'/tmp/pip-install-i_krx6kt/cython/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d /tmp/pip-wheel-1udngc_b cwd: /tmp/pip-install-i_krx6kt/cython/ Complete output (482 lines): running bdist_wheel running build running build_py creating build creating build/lib.linux-x86_64-3.8 copying cython.py -> build/lib.linux-x86_64-3.8 creating build/lib.linux-x86_64-3.8/Cython copying Cython/__init__.py -> build/lib.linux-x86_64-3.8/Cython copying Cython/StringIOTree.py -> build/lib.linux-x86_64-3.8/Cython copying Cython/TestUtils.py -> build/lib.linux-x86_64-3.8/Cython copying Cython/Shadow.py -> build/lib.linux-x86_64-3.8/Cython copying Cython/Utils.py -> build/lib.linux-x86_64-3.8/Cython copying Cython/Debugging.py -> build/lib.linux-x86_64-3.8/Cython copying Cython/CodeWriter.py -> build/lib.linux-x86_64-3.8/Cython creating build/lib.linux-x86_64-3.8/Cython/Build copying Cython/Build/IpythonMagic.py -> build/lib.linux-x86_64-3.8/Cython/Build copying Cython/Build/__init__.py -> build/lib.linux-x86_64-3.8/Cython/Build copying Cython/Build/Inline.py -> build/lib.linux-x86_64-3.8/Cython/Build copying Cython/Build/Cythonize.py -> build/lib.linux-x86_64-3.8/Cython/Build copying Cython/Build/BuildExecutable.py -> build/lib.linux-x86_64-3.8/Cython/Build copying Cython/Build/Dependencies.py -> build/lib.linux-x86_64-3.8/Cython/Build creating build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/ParseTreeTransforms.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/ModuleNode.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Annotate.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Main.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/DebugFlags.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/UtilityCode.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/AutoDocTransforms.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Options.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Future.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/TreePath.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Version.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/AnalysedTreeTransforms.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/TypeInference.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Buffer.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/__init__.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/TreeFragment.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/FlowControl.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/ExprNodes.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/CodeGeneration.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/MemoryView.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Errors.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Pipeline.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Builtin.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/CmdLine.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Parsing.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/CythonScope.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Nodes.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/PyrexTypes.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Code.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/StringEncoding.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/UtilNodes.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Visitor.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Scanning.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Interpreter.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Lexicon.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/FusedNode.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Optimize.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/TypeSlots.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Naming.py -> build/lib.linux-x86_64-3.8/Cython/Compiler copying Cython/Compiler/Symtab.py -> build/lib.linux-x86_64-3.8/Cython/Compiler creating build/lib.linux-x86_64-3.8/Cython/Runtime copying Cython/Runtime/__init__.py -> build/lib.linux-x86_64-3.8/Cython/Runtime creating build/lib.linux-x86_64-3.8/Cython/Distutils copying Cython/Distutils/build_ext.py -> build/lib.linux-x86_64-3.8/Cython/Distutils copying Cython/Distutils/__init__.py -> build/lib.linux-x86_64-3.8/Cython/Distutils copying Cython/Distutils/extension.py -> build/lib.linux-x86_64-3.8/Cython/Distutils creating build/lib.linux-x86_64-3.8/Cython/Plex copying Cython/Plex/Traditional.py -> build/lib.linux-x86_64-3.8/Cython/Plex copying Cython/Plex/__init__.py -> build/lib.linux-x86_64-3.8/Cython/Plex copying Cython/Plex/Transitions.py -> build/lib.linux-x86_64-3.8/Cython/Plex copying Cython/Plex/Errors.py -> build/lib.linux-x86_64-3.8/Cython/Plex copying Cython/Plex/Machines.py -> build/lib.linux-x86_64-3.8/Cython/Plex copying Cython/Plex/Lexicons.py -> build/lib.linux-x86_64-3.8/Cython/Plex copying Cython/Plex/Regexps.py -> build/lib.linux-x86_64-3.8/Cython/Plex copying Cython/Plex/Timing.py -> build/lib.linux-x86_64-3.8/Cython/Plex copying Cython/Plex/Actions.py -> build/lib.linux-x86_64-3.8/Cython/Plex copying Cython/Plex/DFA.py -> build/lib.linux-x86_64-3.8/Cython/Plex copying Cython/Plex/Scanners.py -> build/lib.linux-x86_64-3.8/Cython/Plex creating build/lib.linux-x86_64-3.8/Cython/Tests copying Cython/Tests/TestStringIOTree.py -> build/lib.linux-x86_64-3.8/Cython/Tests copying Cython/Tests/TestJediTyper.py -> build/lib.linux-x86_64-3.8/Cython/Tests copying Cython/Tests/__init__.py -> build/lib.linux-x86_64-3.8/Cython/Tests copying Cython/Tests/xmlrunner.py -> build/lib.linux-x86_64-3.8/Cython/Tests copying Cython/Tests/TestCodeWriter.py -> build/lib.linux-x86_64-3.8/Cython/Tests creating build/lib.linux-x86_64-3.8/Cython/Build/Tests copying Cython/Build/Tests/TestIpythonMagic.py -> build/lib.linux-x86_64-3.8/Cython/Build/Tests copying Cython/Build/Tests/TestStripLiterals.py -> build/lib.linux-x86_64-3.8/Cython/Build/Tests copying Cython/Build/Tests/__init__.py -> build/lib.linux-x86_64-3.8/Cython/Build/Tests copying Cython/Build/Tests/TestInline.py -> build/lib.linux-x86_64-3.8/Cython/Build/Tests creating build/lib.linux-x86_64-3.8/Cython/Compiler/Tests copying Cython/Compiler/Tests/TestParseTreeTransforms.py -> build/lib.linux-x86_64-3.8/Cython/Compiler/Tests copying Cython/Compiler/Tests/TestVisitor.py -> build/lib.linux-x86_64-3.8/Cython/Compiler/Tests copying Cython/Compiler/Tests/TestBuffer.py -> build/lib.linux-x86_64-3.8/Cython/Compiler/Tests copying Cython/Compiler/Tests/TestMemView.py -> build/lib.linux-x86_64-3.8/Cython/Compiler/Tests copying Cython/Compiler/Tests/__init__.py -> build/lib.linux-x86_64-3.8/Cython/Compiler/Tests copying Cython/Compiler/Tests/TestTreePath.py -> build/lib.linux-x86_64-3.8/Cython/Compiler/Tests copying Cython/Compiler/Tests/TestSignatureMatching.py -> build/lib.linux-x86_64-3.8/Cython/Compiler/Tests copying Cython/Compiler/Tests/TestTreeFragment.py -> build/lib.linux-x86_64-3.8/Cython/Compiler/Tests copying Cython/Compiler/Tests/TestUtilityLoad.py -> build/lib.linux-x86_64-3.8/Cython/Compiler/Tests creating build/lib.linux-x86_64-3.8/Cython/Utility copying Cython/Utility/__init__.py -> build/lib.linux-x86_64-3.8/Cython/Utility creating build/lib.linux-x86_64-3.8/Cython/Tempita copying Cython/Tempita/_looper.py -> build/lib.linux-x86_64-3.8/Cython/Tempita copying Cython/Tempita/__init__.py -> build/lib.linux-x86_64-3.8/Cython/Tempita copying Cython/Tempita/_tempita.py -> build/lib.linux-x86_64-3.8/Cython/Tempita copying Cython/Tempita/compat3.py -> build/lib.linux-x86_64-3.8/Cython/Tempita creating build/lib.linux-x86_64-3.8/pyximport copying pyximport/pyximport.py -> build/lib.linux-x86_64-3.8/pyximport copying pyximport/pyxbuild.py -> build/lib.linux-x86_64-3.8/pyximport copying pyximport/__init__.py -> build/lib.linux-x86_64-3.8/pyximport creating build/lib.linux-x86_64-3.8/Cython/Debugger
technocore

2020/05/23 00:23

ラズパイで試してみたら、一瞬で終わりました。 バージョンを指定しなければどうでしょう? pi@raspberrypi1:~ $ pip install cython Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple Requirement already satisfied: cython in ./.pyenv/versions/3.7.6/lib/python3.7/site-packages (0.29.15)
groggy_egg

2020/05/23 00:37 編集

指定のバージョンが必要なのでバージョン指定は外せないです。
groggy_egg

2020/05/23 01:01

バージョン指定なしだとインストールできます。
technocore

2020/05/23 01:26

Cython 0.21がリリースされたのは Released: Sep 11, 2014 です。6年前のcythonを使う理由を聞かせてください。
guest

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

まだベストアンサーが選ばれていません

会員登録して回答してみよう

アカウントをお持ちの方は

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.48%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問