Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Ruby Cai
6,421 Pointshow to fix it ? i change my port , but it still the same problem
File "/usr/local/pyenv/versions/3.5.0/lib/python3.5/site-packages/flask/app.py",
line 772, in run
run_simple(host, port, self, **options)
File "/usr/local/pyenv/versions/3.5.0/lib/python3.5/site-packages/werkzeug/servin
g.py", line 618, in run_simple
test_socket.bind((hostname, port))
OSError: [Errno 98] Address already in use
2 Answers

Keith Doyle
25,973 PointsI had a similar issue. If you're running this locally there could be something using the port you designated. Try using a different port in your app.run command.
app.run(debug=True, host='0.0.0.0', port='1234')

Anthony Dibaya
10,194 PointsI'm running this on workspace and that didnt solve my problem although I did run those command through the terminal..any suggestions?
Ruby Cai
6,421 PointsRuby Cai
6,421 Pointsthank you ^^