× Возникла ошибка при попытке установить пакет. ╰─> typed-ast

У меня есть проект django, который я клонировал в свой локальный, но я не могу начать кодирование бэкэнда из-за того, что требования не установлены. Каждый раз, когда я пытаюсь установить файл requirements.txt, он выдает следующую ошибку.

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

× Encountered error while trying to install package.
╰─> typed-ast

note: This is an issue with the package mentioned above, not pip.
hint: See above for output from the failure.

Я пробовал следующие вещи.

  1. Понижение версии python до 3.11.1
  2. Понижение версии typed-ast до 1.4.2
  3. Установил mypy последней версии 1.10.0
  4. Установил Desktop development с C++ и другие пакеты.

У меня windows 11. Я клонировал проект в другой системе с windows 10, но он работал идеально... Мне не пришлось ничего понижать. Моя ошибка выглядит следующим образом:

Мой файл requirements.txt

pytz==2021.1  # https://github.com/stub42/pytz
python-slugify==4.0.1  # https://github.com/un33k/python-slugify
argon2-cffi==20.1.0  # https://github.com/hynek/argon2_cffi
redis==3.5.3  # https://github.com/andymccurdy/redis-py
hiredis==1.1.0  # https://github.com/redis/hiredis-py
typed-ast==1.4.2

tablib
# Django
# ------------------------------------------------------------------------------
django==3.1.7  # pyup: < 3.2  # https://www.djangoproject.com/
django-environ==0.4.5  # https://github.com/joke2k/django-environ
django-model-utils==4.1.1  # https://github.com/jazzband/django-model-utils
django-allauth==0.44.0  # https://github.com/pennersr/django-allauth
django-crispy-forms==1.11.1  # https://github.com/django-crispy-forms/django-crispy-forms
django-redis==4.12.1  # https://github.com/jazzband/django-redis
django-cors-headers 
django-rest-passwordreset
pillow
gunicorn
Collectfast
dj-database-url
django-autoslug
django-rest-knox
django-import-export
Werkzeug==1.0.1 # https://github.com/pallets/werkzeug
ipdb==0.13.5  # https://github.com/gotcha/ipdb
# https://github.com/psycopg/psycopg2

# Testing
# ------------------------------------------------------------------------------
mypy==0.812  # https://github.com/python/mypy
django-stubs==1.7.0  # https://github.com/typeddjango/django-stubs
pytest==6.2.2  # https://github.com/pytest-dev/pytest
pytest-sugar==0.9.4  # https://github.com/Frozenball/pytest-sugar

# Documentation
# ------------------------------------------------------------------------------
sphinx==3.5.1  # https://github.com/sphinx-doc/sphinx
sphinx-autobuild==2020.9.1 # https://github.com/GaretJax/sphinx-autobuild

# Code quality
# ------------------------------------------------------------------------------
flake8==3.8.4  # https://github.com/PyCQA/flake8
flake8-isort==4.0.0  # https://github.com/gforcada/flake8-isort
coverage==5.5  # https://github.com/nedbat/coveragepy
black==20.8b1  # https://github.com/ambv/black
pylint-django==2.4.2  # https://github.com/PyCQA/pylint-django
pre-commit==2.10.1  # https://github.com/pre-commit/pre-commit

# Django
# ------------------------------------------------------------------------------
factory-boy==3.2.0  # https://github.com/FactoryBoy/factory_boy

django-debug-toolbar==3.2  # https://github.com/jazzband/django-debug-toolbar
django-extensions==3.1.1  # https://github.com/django-extensions/django-extensions
django-coverage-plugin==1.8.0  # https://github.com/nedbat/django_coverage_plugin
pytest-django==4.1.0  # https://github.com/pytest-dev/pytest-django
whitenoise
djangorestframework
django-filter
django-tables2
drf-yasg
django-filter

Ошибка связана с тем, что компилятор C не может скомпилировать файл typed_ast.c Попробуйте :

    pip install --upgrade setuptools

Другой причиной может быть ошибка visual c++ проверьте наличие Install Visual C++ Build Tools:

Если проблема не решена, попробуйте использовать conda для python более низких версий 3.8 между 2.7, так как пакет поддерживает это.

Вернуться на верх