
4주차 2강 시작하기 부분입니다.
파이참 내 실행 시
/Users/mand0o0/Desktop/sparta/projects/prac/venv/bin/python /Users/mand0o0/Desktop/sparta/projects/prac/app.py
* Serving Flask app 'app'
* Debug mode: on
Address already in use
Port 5000 is in use by another program. Either identify and stop that program, or start the server with a different port.
On macOS, try disabling the 'AirPlay Receiver' service from System Preferences -> Sharing.
종료 코드 1(으)로 완료된 프로세스
라는 문구가 뜹니다.
추가적으로 무엇을 다운 받아야 하는 건지 ༼ ᵕ̩̩ ⚰︎ ᵕ̩̩༽
아직 구글링이 서툴어 찾아내지 못해 문의 드립니다.

from flask import Flask
app = Flask(__name__)
@app.route('/')
def home():
return 'This is Home!'
if __name__ == '__main__':
app.run('0.0.0.0',port=5000,debug=True)
