강의

멘토링

로드맵

Inflearn Community Q&A

qnzjn's profile image
qnzjn

asked

Introduction to Python and Creating Various Automated Applications Using Web Crawling

PyQt5 만들고 파이썬에서 코드작성하는데 오류가떠요

Written on

·

660

0

line 10, in <module>
    class Main(QMainWindow, Form_class):
NameError: name 'Form_class' is not defined 이런오류가떠요 어떻게하죠??

웹-크롤링python

Answer 1

0

niceman님의 프로필 이미지
niceman
Instructor

pyqt5 버전이 최신버전이라 QMainWindow 에 정의된 form_class를 로드하지 못하는 것 같습니다.

강의에서 제공된 소스코드를 보시고 정확하게 import 선언등을 확인하시고 해당 강의 공지에 등록된

pyqt5 버전을 맞춰주셔야 될 것 같습니다.

qnzjn's profile image
qnzjn

asked

Ask a question