如何在Windows 10的Ubuntu子系统中运行Django服务器?

时间:2018-02-06 13:02:31

标签: django windows-subsystem-for-linux

我使用了这些命令(Windows 10子系统中的Ubuntu Bash):

$ pip install virtualenv
$ cd ~
$ virtual venv
$ source venv/bin/activate
(venv) $ pip install django
(venv) $ django-admin startproject mysite
(venv) $ cd mysite
(venv) $ python managy.py makemigrations
(venv) $ python managy.py migrate
(venv) $ python managy.py runserver
...
Starting development server at http://127.0.0.1:8000/

...

(在Windows 10中)
打开网页浏览器
输入网址:http://127.0.0.1:8000/
......没有回应....

我错过了什么吗? This video显示它有效,但对我来说,它没有。

1 个答案:

答案 0 :(得分:1)

您的端口8000可能正在使用中。在另一个端口号

上运行服务器
python manage.py runserver 127.0.0.1:9595