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
root@debian11:/realworld# python3 -m venv venv
root@debian11:/realworld# source venv/bin/activate
(venv) root@debian11:/realworld# pip install -r requirements.txt
Collecting django==4.0.1
Downloading Django-4.0.1-py3-none-any.whl (8.0 MB)
|████████████████████████████████| 8.0 MB 916 kB/s
Collecting django-htmx===1.8.0
Downloading django_htmx-1.8.0-py3-none-any.whl (8.9 kB)
Collecting django-widget-tweaks==1.4.12
Downloading django_widget_tweaks-1.4.12-py3-none-any.whl (8.9 kB)
Collecting django-taggit==2.1.0
Downloading django_taggit-2.1.0-py3-none-any.whl (59 kB)
|████████████████████████████████| 59 kB 7.3 MB/s
Collecting markdown==3.3.6
Downloading Markdown-3.3.6-py3-none-any.whl (97 kB)
|████████████████████████████████| 97 kB 7.6 MB/s
Collecting asgiref<4,>=3.4.1
Downloading asgiref-3.5.2-py3-none-any.whl (22 kB)
Collecting sqlparse>=0.2.2
Downloading sqlparse-0.4.3-py3-none-any.whl (42 kB)
|████████████████████████████████| 42 kB 920 kB/s
Collecting importlib-metadata>=4.4
Downloading importlib_metadata-5.0.0-py3-none-any.whl (21 kB)
Collecting zipp>=0.5
Downloading zipp-3.10.0-py3-none-any.whl (6.2 kB)
Installing collected packages: zipp, sqlparse, asgiref, importlib-metadata, django, markdown, django-widget-tweaks, django-taggit, django-htmx
Successfully installed asgiref-3.5.2 django-4.0.1 django-htmx-1.8.0 django-taggit-2.1.0 django-widget-tweaks-1.4.12 importlib-metadata-5.0.0 markdown-3.3.6 sqlparse-0.4.3 zipp-3.10.0
(venv) root@debian11:/realworld# ./manage.py migrate && ./manage.py runserver
Operations to perform:
Apply all migrations: accounts, admin, articles, auth, comments, contenttypes, sessions, taggit
Running migrations:
Applying contenttypes.0001_initial... OK
Applying contenttypes.0002_remove_content_type_name... OK
Applying auth.0001_initial... OK
Applying auth.0002_alter_permission_name_max_length... OK
Applying auth.0003_alter_user_email_max_length... OK
Applying auth.0004_alter_user_username_opts... OK
Applying auth.0005_alter_user_last_login_null... OK
Applying auth.0006_require_contenttypes_0002... OK
Applying auth.0007_alter_validators_add_error_messages... OK
Applying auth.0008_alter_user_username_max_length... OK
Applying auth.0009_alter_user_last_name_max_length... OK
Applying auth.0010_alter_group_name_max_length... OK
Applying auth.0011_update_proxy_permissions... OK
Applying auth.0012_alter_user_first_name_max_length... OK
Applying accounts.0001_initial... OK
Applying accounts.0002_alter_user_managers_user_followers... OK
Applying admin.0001_initial... OK
Applying admin.0002_logentry_remove_auto_add... OK
Applying admin.0003_logentry_add_action_flag_choices... OK
Applying taggit.0001_initial... OK
Applying taggit.0002_auto_20150616_2121... OK
Applying taggit.0003_taggeditem_add_unique_index... OK
Applying taggit.0004_alter_taggeditem_content_type_alter_taggeditem_tag... OK
Applying articles.0001_initial... OK
Applying articles.0002_article_favorites_alter_article_tags... OK
Applying comments.0001_initial... OK
Applying sessions.0001_initial... OK
Watching for file changes with StatReloader
Performing system checks...
System check identified no issues (0 silenced).
October 29, 2022 - 11:55:12
Django version 4.0.1, using settings 'realworld.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CONTROL-C.
everything says ok but stopped there and no respond from the port or command line
The text was updated successfully, but these errors were encountered:
root@debian11:
/realworld# python3 -m venv venv/realworld# source venv/bin/activateroot@debian11:
(venv) root@debian11:
/realworld# pip install -r requirements.txt/realworld# ./manage.py migrate && ./manage.py runserverCollecting django==4.0.1
Downloading Django-4.0.1-py3-none-any.whl (8.0 MB)
|████████████████████████████████| 8.0 MB 916 kB/s
Collecting django-htmx===1.8.0
Downloading django_htmx-1.8.0-py3-none-any.whl (8.9 kB)
Collecting django-widget-tweaks==1.4.12
Downloading django_widget_tweaks-1.4.12-py3-none-any.whl (8.9 kB)
Collecting django-taggit==2.1.0
Downloading django_taggit-2.1.0-py3-none-any.whl (59 kB)
|████████████████████████████████| 59 kB 7.3 MB/s
Collecting markdown==3.3.6
Downloading Markdown-3.3.6-py3-none-any.whl (97 kB)
|████████████████████████████████| 97 kB 7.6 MB/s
Collecting asgiref<4,>=3.4.1
Downloading asgiref-3.5.2-py3-none-any.whl (22 kB)
Collecting sqlparse>=0.2.2
Downloading sqlparse-0.4.3-py3-none-any.whl (42 kB)
|████████████████████████████████| 42 kB 920 kB/s
Collecting importlib-metadata>=4.4
Downloading importlib_metadata-5.0.0-py3-none-any.whl (21 kB)
Collecting zipp>=0.5
Downloading zipp-3.10.0-py3-none-any.whl (6.2 kB)
Installing collected packages: zipp, sqlparse, asgiref, importlib-metadata, django, markdown, django-widget-tweaks, django-taggit, django-htmx
Successfully installed asgiref-3.5.2 django-4.0.1 django-htmx-1.8.0 django-taggit-2.1.0 django-widget-tweaks-1.4.12 importlib-metadata-5.0.0 markdown-3.3.6 sqlparse-0.4.3 zipp-3.10.0
(venv) root@debian11:
Operations to perform:
Apply all migrations: accounts, admin, articles, auth, comments, contenttypes, sessions, taggit
Running migrations:
Applying contenttypes.0001_initial... OK
Applying contenttypes.0002_remove_content_type_name... OK
Applying auth.0001_initial... OK
Applying auth.0002_alter_permission_name_max_length... OK
Applying auth.0003_alter_user_email_max_length... OK
Applying auth.0004_alter_user_username_opts... OK
Applying auth.0005_alter_user_last_login_null... OK
Applying auth.0006_require_contenttypes_0002... OK
Applying auth.0007_alter_validators_add_error_messages... OK
Applying auth.0008_alter_user_username_max_length... OK
Applying auth.0009_alter_user_last_name_max_length... OK
Applying auth.0010_alter_group_name_max_length... OK
Applying auth.0011_update_proxy_permissions... OK
Applying auth.0012_alter_user_first_name_max_length... OK
Applying accounts.0001_initial... OK
Applying accounts.0002_alter_user_managers_user_followers... OK
Applying admin.0001_initial... OK
Applying admin.0002_logentry_remove_auto_add... OK
Applying admin.0003_logentry_add_action_flag_choices... OK
Applying taggit.0001_initial... OK
Applying taggit.0002_auto_20150616_2121... OK
Applying taggit.0003_taggeditem_add_unique_index... OK
Applying taggit.0004_alter_taggeditem_content_type_alter_taggeditem_tag... OK
Applying articles.0001_initial... OK
Applying articles.0002_article_favorites_alter_article_tags... OK
Applying comments.0001_initial... OK
Applying sessions.0001_initial... OK
Watching for file changes with StatReloader
Performing system checks...
System check identified no issues (0 silenced).
October 29, 2022 - 11:55:12
Django version 4.0.1, using settings 'realworld.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CONTROL-C.
everything says ok but stopped there and no respond from the port or command line
The text was updated successfully, but these errors were encountered: