본문 바로가기
Programming/문제 해결

ros때문에 cv2 에러뜨는문제(ImportError: /opt/ros/kinetic/lib/python2.7/dist-packages/cv2.so: undefined symbol: PyCObject_Type)

by 꿈꾸는 띵땅근 2021. 6. 10.

ImportError: /opt/ros/kinetic/lib/python2.7/dist-packages/cv2.so: undefined symbol: PyCObject_Type

 

 

 

python version 3로 해야하는데, ros때문에 사용할 수 없을 때 

코드에 import sys 아래에 한줄 추가해주는 해결책이 있다. 

https://stackoverflow.com/questions/51579019/import-cv2-on-python3/51805410

 

import cv2 on python3

I have a problem trying to import cv2 in python3 when I run it from my home folder... luis@luis-Ubuntu:~$ python3 Python 3.5.2 (default, Nov 23 2017, 16:37:01) [GCC 5.4.0 20160609] on linux Type ...

stackoverflow.com

댓글