본문 바로가기

분류 전체보기

(185)
ModuleNotFoundError: No module named 'PIL' If the error as below occurs, ModuleNotFoundError: No module named 'PIL' You should install the pillow. pip install pillow
Ubuntu 18.04에 크롬 설치하는 방법 1. 크롬 다운로드. wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb sudo apt install ./google-chrome-stable_current_amd64.deb 3. 크롬 설치. sudo apt install ./google-chrome-stable_current_amd64.deb
ModuleNotFoundError: No module named 'pymavlink' If the error as below occurs, $ ../Tools/autotest/sim_vehicle.py --map --console Traceback (most recent call last): File "../Tools/autotest/sim_vehicle.py", line 31, in from pymavlink import mavextra ModuleNotFoundError: No module named 'pymavlink' You can uninstall the existing gym and then should install it. This error appears to be a version problem of gym. $ python -m pip install pymavlink N..
ModuleNotFoundError: No module named 'matplotlib' If the error as below occurs, ModuleNotFoundError: No module named 'matplotlib' You should install the matplotlib. pip install matplotlib
ImportError: Trying to log data to tensorboard but tensorboard is not installed. If the error as below occurs, ImportError: Trying to log data to tensorboard but tensorboard is not installed. You should install the tensorboard. pip install tensorboard
ModuleNotFoundError: No module named 'stable_baselines3' If the error as below occurs, ModuleNotFoundError: No module named 'stable_baselines3' You should install the stable_baselines3 pip install stable_baselines3
cannot import name 'joblib' If the error as below occurs, ImportError: cannot import name 'joblib' You should install the joblib. import joblib
No module named 'cv2' If the error as below occurs, No module named 'cv2' You should install the opencv-python. pip install opencv-python