Computer/Ubuntu, Linux

파이썬 실행시 no module named XX 관련 정리

매직블럭 2017. 3. 21. 16:13

라이브러리가 설치되지 않아 발생하는 No module named XXX 에러에 관한 정리

에러가 나는 녀석을 pip install 로 설치해서 해결되는 경우도 많지만 표시되는 녀석과 

설치해야 하는 라이브러리 명이 같이 않은 경우가 있어서 적어두자.



skimage.io

>> pip install scikit-image


sklearn.model_selection

>> sudo pip install scikit-learn


google.protobuf.internal

>> pip install protobuf


easydict

>> pip install easydict


_tkinter, please install the python-tk package

>> sudo apt-get install python-tk


yaml

>> pip install pyyaml


cv2

>> sudo apt-get install python-opencv


magic

>> pip install python-magic


requests

>> pip install requests


wtforms

>> pip install Flask-WTF


h5py

>> pip install h5py


werkzeug.datastructures

>> pip install werkzeug


ext.socketio

>> sudo apt-get install python-flaskext.socketio



필요한 라이브러리 버전 다 정리 되어 있을 경우

>> pip install -r requirements.txt