File 'C:\Python25\lib\SocketServer.py', line 330, in __init__ self.server_bind() File 'C:\Python25\lib\BaseHTTPServer.py', line 101, in server_bind SocketServer.TCPServer.server_bind(self) File 'C:\Python25\lib\SocketServer.py', line 341, in server_bind self.socket.bind(self.server_address) File '<string>', line 1, in bind socket.error: (10013, 'Permission denied')
I tried to start up the Google App Engine development server and received this error the first time I tried to run it. Any ideas? I’m new to python.
It might be possible that you are trying to run on a port the current user account does not have permission to bind to. This could be port 80 or something. Try increasing the portnumber or use a user with sufficient privileges.
Hope this helps