ImportError: Нет модуля с именем south.v2, но я установил v2
Я запускаю django 1.2 на windows 10. Я создал виртуальную среду и клонировал свой репозиторий с github. Я пытаюсь мигрировать ./manage.py migrate и получаю ошибку:
ImportError: Нет модуля с именем v2
Я проверил похожие проблемы, но они не работают в моем проекте.
! Migration assist:0332_alias_crawl_from, вероятно, не существует.
- Traceback:
Traceback (последнее последнее обращение):
Файл "manage.py", строка 6, in
execute_manager(conf) Файл "D:\workspace\Fix python\web\venv2\lib\site-packages\django\core\management_init_.py", строка 438, in execute_manager utility.execute() Файл "D:\workspace\Fix python\web\venv2\lib\site-packages\django\core\management_init_.py", строка 379, in execute self.fetch_command(subcommand).run_from_argv(self.argv) Файл "D:\workspace\Fix python\web\venv2\lib\site-packages\django\core\management\base.py", строка 191, in run_from_argv self.execute(*args, **options.dict) File "D:\workspace\Fix python\web\venv2\lib\site-packages\django\core\management\base.py", line 218, in execute output = self.handle(*args, **options) Файл "D:\workspace\Fix python\web\venv2\lib\site-packages\south\management\commands\migrate.py", строка 79, в handle tree = migration.dependency_tree() Файл "D:\workspace\Fix python\web\venv2\lib\site-packages\south\migration.py", строка 117, в dependency_tree tree = all_migrations() Файл "D:\workspace\Fix python\web\venv2\lib\site-packages\south\migration.py", строка 112, в all_migrations for app in get_migrated_apps() Файл "D:\workspace\Fix python\web\venv2\lib\site-packages\south\migration.py", строка 94, в get_migration module = import(app.name + "." + name, '', '', ['Migration']) Файл "D:\workspace\Fix python\web\assist\migrations\0332_alias_crawl_from.py", строка 4, in from south.v2 import SchemaMigration ImportError: Нет модуля с именем v2 .
Вот мой список заморозки пунктов
'''
amqp 1.0.13
amqplib 0.6.1
anyjson 0.3.3
beatbox 16.1
BeautifulSoup 3.2.0
billiard 2.7.3.34
carrot 0.10.7
celery 3.0.22
contextlib2 0.6.0.post1
Django 1.2
django-basic-apps 0.7
django-celery 2.5.0
django-filebrowser 3.2
django-mobileadmin 0.5.2
django-picklefield 0.1
django-piston 0.2.2.1
django-tagging 0.3.1
Dozer 0.1
Fabric 0.9.0
gdata 2.0.15
icalendar 2.1
jsmin 2.2.2
kombu 2.5.16
lockfile 0.8
magiclog 1.0.2
oauth 1.0.1
setuptools 44.1.1
six 1.16.0
sorl-thumbnail 3.2.5
South 0.6.2
stackclimber 0.99
typing 3.10.0.0
WebOb 0.9.8
wheel 0.36.2
yolk 0.4.1
'''
Это мои требования.txt '''
amqp==1.0.13
amqplib==0.6.1
anyjson==0.3.3
beatbox==16.1
BeautifulSoup==3.2.0
billiard==2.7.3.34
carrot==0.10.7
celery==3.0.22
Django==1.2
django-celery==2.5.0
django-filebrowser==3.2
django-mobileadmin==0.5.2
django-picklefield==0.1
django-piston==0.2.2.1
django-tagging==0.3.1
Dozer==0.1
Fabric==0.9.0
gdata==2.0.15
icalendar==2.1
jsmin==2.2.2
kombu==2.5.16
lockfile==0.8
oauth==1.0.1
Paste==1.7.2
pyasn1==0.0.11a0
pycrypto==2.0.1
python-cloudfiles==1.7.11
python-dateutil>=1.5
python-keyczar==0.7b0
python-memcached==1.47
pytz>=2021.3
sorl-thumbnail==3.2.5
South==0.6.2
WebOb==0.9.8
yolk==0.4.1
https://github.com/nathanborror/django-basic-apps/archive/refs/heads/master.zip
'''