작성
·
118
0
강의 영상 7:00을 보면 제시된 코드를 실행하면 "Running on http://127.0.0.1:8050"가 출력이 되어야 할텐데, 계속
runcell('Section3 Div1', 'C:/Users/user/Downloads/Section3Dash_Div.py')
<IPython.lib.display.IFrame at 0x1a139de5010>
이것만 출력됩니다.
아래 다른 질문글에 대한 답변을 다 시도해봤는데도, 좀처럼 해결이 되지 않습니다.
사용한 코드입니다. dash랑 dash_html_components는 다 설치되어 있는 상태입니다. 코드를 수정하지도 않았습니다.
#%% Section3 _ Div1
# Dash 모듈 불러오기
import dash
import dash_html_components as html
# app 객체생성
app = dash.Dash()
# app 레이아웃 설정
app.layout = html.Div([
html.Div(['Div1']),
html.Div(['Div2'])
])
# app 실행
if name=='__main__':
app.run_server()