Я использую MacBook Pro с чипом M1 Pro под управлением macOS Venture 13.0.1 и установлен Python 3.9.6. При попытке выполнить следующие команды:
pip install anonympy
pip3 install anonympy
Я получаю следующий результат:
Collecting anonympy
Using cached anonympy-0.3.7.tar.gz (5.8 MB)
Installing build dependencies ... done
Getting requirements to build wheel ... error
error: subprocess-exited-with-error
× Getting requirements to build wheel did not run successfully.
│ exit code: 1
╰─> [1 lines of output]
error in anonympy setup command: 'python_requires' must be a string containing valid version specifiers; Invalid specifier: '>=3.6*'
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
error: subprocess-exited-with-error
× Getting requirements to build wheel 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.
Я попробовал это в Colab и в виртуальной среде, где локально работает одна и та же версия Python, и оба раза получил одну и ту же ошибку колеса сборки. Я также попытался запустить следующую команду, но безрезультатно.
pip(3) install --upgrade setuptools
Есть ли проблема с пакетом или я что-то упускаю?






Кажется, это ошибка в пакете, который несовместим с последней версией PyPi.
Вы можете установить его напрямую с помощью pip+git :
pip install git+https://github.com/ArtLabss/open-data-anonymizer.git
Соответствующая проблема на Github: https://github.com/ArtLabss/open-data-anonymizer/issues/26