"Error: That IP address can't be assigned-to" when running app

django, python

Solution

Use:

python manage.py runserver 0:8000

Problem

Whenever I'm trying to launch a Django server app with a LAN ip I receive the error: ``` Django version 1.4.1, using settings 'servidorMain.settings' Development server is running at http://192.168.1.XX:8080/ Quit the server with CONTROL-C. Error: That IP address can't be assigned-to. ``` In localhost it works perfectly. I also was checking the network configuration and I think all is correct so I dont see where is the problem. Thanks in advance.

Original source

Related problems