web-dev-qa-db-ja.com

MSYS2にPython開発ツールをインストールする方法

MSYS2にPython開発ツールをインストールする必要があります。

私のPythonインストールは機能します(python3.6またはpython3を呼び出すことによって:

$ python3.6
Python 3.6.5 (default, Apr 16 2018, 10:17:38)  [GCC 7.3.0 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>>

Setuptoolsがインストールされます。

$ pip3 install setuptools
Requirement already satisfied: setuptools in /usr/lib/python3.6/site-packages (36.4.0)

インストール方法python開発者パッケージ? で提案されているとおりにインストールしようとしました。MSYS2にはyumがないため、 pacman

$ pacman -S python-devel
error: target not found: python-devel

$ pacman -S python3-devel
error: target not found: python3-devel

$ pacman -S python3.6-devel
error: target not found: python3.6-devel

$ pacman -S python-dev
error: target not found: python-dev

$ pacman -S python3-dev
error: target not found: python3-dev

$ pacman -S python3.6-dev
error: target not found: python3.6-dev

これまでのところ、これはすべて失敗しています。 Python開発ツールを入手するにはどうすればよいですか?

4
Simon

使用しているMSYS2環境と必要なPythonのバージョンに応じて、インストールするパッケージはPythonパッケージです。

$ pacman -Qs python
local/mingw-w64-i686-python2 2.7.14-5
    A high-level scripting language (mingw-w64)
local/mingw-w64-i686-python3 3.6.4-2
    A high-level scripting language (mingw-w64)
local/mingw-w64-x86_64-python2 2.7.14-5
    A high-level scripting language (mingw-w64)
local/mingw-w64-x86_64-python3 3.6.4-2
    A high-level scripting language (mingw-w64)
local/python2 2.7.13-1
    A high-level scripting language
2
David Grayson