4
I can run it smoothly,this is my notebook https://colab.research.google.com/drive/1XcxOu_9w9Rs_m9bT3ueqeQmSctGvPjPB?usp=sharing, maybe you forgot to save the settings.py after changing ALLOWED_HOSTS, or maybe you didn’t connect to the colab backend because colab disconnected the session after a few hours
sorry my english is not good
4
Everything is fine with your code but do not access the link http://127.0.0.1:8000/. Instead:
-
Open (double-click) the settings.py in the Files section (portfolio/portfolio/settings.py) and edit the following (it will be saved automatically):
ALLOWED_HOSTS = ['colab.research.google.com']
-
I think it is optional but I would add and run
!python manage.py migrate
before running the server!python manage.py runserver 8000
-
Click on the link that was printed by eval_js (
print(eval_js("google.colab.kernel.proxyPort(8000)"))
)
- [Django]-How is "secret_key.txt" more secure in Django project?
- [Django]-Nginx permission denied 13 with Django on static content
- [Django]-Filter JSON field django with greater than, less than and a range using _contains
- [Django]-Editing models and extending database structure in Saleor
- [Django]-Wagtail customizing admin
-1
I got lost in the same place, but when I checked it more carefully, I found that the link generated on the way was the Django url. The localhost address at the end is irrelevant.