在ubuntu12.04中部署了eclipse3.8.2+django1.5.2+python2.7,且在eclipse中運行manage.py不能正常啓動,提示usage:manage.py subcommand [options][args]python
有兩種啓動方式:django
一、進入manage.py所在目錄,執行python manage.py runserver,其默認端口爲8000,能夠訪問http://ip+8000便可訪問項目 ubuntu
二、右鍵manage.py,Debug As-->Debug configurations-->Arguments-->Program arguments中輸入:eclipse
runserver 0.0.0.0:80 --noreload,能夠訪問:http://ip+8000便可訪問項目 python2.7