Мне нужно установить инструменты разработки Python на MSYS2.
Моя установка 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.
>>>
Установочные инструменты установлены:
$ 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?