관리 메뉴

웹개발자의 기지개

[Python] AttributeError: module 'sip' has no attribute 'setapi' 발생시 본문

python

[Python] AttributeError: module 'sip' has no attribute 'setapi' 발생시

http://portfolio.wonpaper.net 2021. 5. 1. 19:02

 

pip install matplotlib

위를 통하여 정상적으로 matplotlib 를 설치하고,

[ matplotlib1.py ]

 

1
2
3
import matplotlib.pyplot as plt
plt.plot([1,2,3,4])
plt.show()
cs

실행하니 위 그림과 같이 에러발생했다.

 

결론은 아래의 소스를 추가로 더 설치토록 하자.

pip install pyside2

 

자 ~ 이제 다시 돌려보자.

 

 

참고 : stackoverflow.com/questions/64291087/matplotlib-module-sip-has-no-attribute-setapi

 

 

Comments