You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Установил django-fias, пробую запустить сервер, получаю ошибку: .................. File "/usr/local/lib/python3.6/site-packages/fias/migrations/0005_load_stats_data.py", line 9, in <module> from fias.importer.commands import load_complete_data File "/usr/local/lib/python3.6/site-packages/fias/importer/commands.py", line 15, in <module> from fias.importer.loader import TableLoader, TableUpdater File "/usr/local/lib/python3.6/site-packages/fias/importer/loader.py", line 8, in <module> from progress.helpers import WritelnMixin ModuleNotFoundError: No module named 'progress.helpers'
Изучил модуль progress - в последней версии пропал модуль helpers, поэтому fias не может подгрузить требуемый класс.
У себя проблему решил добавлением строки в requirements.txt ПЕРЕД ссылкой на репозиторий модуля fias:
git+git://github.com/verigak/progress@1.4
The text was updated successfully, but these errors were encountered:
django 2.2
python 3.6, 3.7, 3.8
Установил django-fias, пробую запустить сервер, получаю ошибку:
.................. File "/usr/local/lib/python3.6/site-packages/fias/migrations/0005_load_stats_data.py", line 9, in <module> from fias.importer.commands import load_complete_data File "/usr/local/lib/python3.6/site-packages/fias/importer/commands.py", line 15, in <module> from fias.importer.loader import TableLoader, TableUpdater File "/usr/local/lib/python3.6/site-packages/fias/importer/loader.py", line 8, in <module> from progress.helpers import WritelnMixin ModuleNotFoundError: No module named 'progress.helpers'
Изучил модуль progress - в последней версии пропал модуль helpers, поэтому fias не может подгрузить требуемый класс.
У себя проблему решил добавлением строки в requirements.txt ПЕРЕД ссылкой на репозиторий модуля fias:
git+git://github.com/verigak/progress@1.4
The text was updated successfully, but these errors were encountered: