Ask Your Question

jaimebayes's profile - activity

2014-12-03 14:45:04 -0600 asked a question cv2 import error ububtu

Hi all,

I am working on ubuntu 64-bit, I installed anaconda, and then opencv. When I try to import cv2 from spyderIDE, I got this:

ImportError: /home/jaimebayes/anaconda/bin/../lib/libm.so.6: version `GLIBC_2.15' not found (required by /usr/lib/x86_64-linux-gnu/libxvidcore.so.4)

I try several solutions to this, but none works. Could it be for this? cv2.so is located in: /usr/lib/python2.7/dist-packages/cv2.so but when I type which python, i got this: /home/jaimebayes/anaconda/bin/python Maybe Anaconda doesnt have access to cv2.so there?

any suggestions?

thanks in advance, Jaime

2014-12-03 14:43:50 -0600 asked a question cv2 ImportError ubuntu

Hi all,

I am working on ubuntu 64-bit, I installed anaconda, and then opencv. When I try to import cv2 from spyderIDE, I got this:

ImportError: /home/jaimebayes/anaconda/bin/../lib/libm.so.6: version `GLIBC_2.15' not found (required by /usr/lib/x86_64-linux-gnu/libxvidcore.so.4)

I try several solutions to this, but none works. Could it be for this? cv2.so is located in: /usr/lib/python2.7/dist-packages/cv2.so but when I type which python, i got this: /home/jaimebayes/anaconda/bin/python Maybe Anaconda doesnt have access to cv2.so there?

any suggestions?

thanks in advance, Jaime

2014-10-18 12:04:03 -0600 asked a question L = np.zeros((373,559,3,256), dtype=int)

Hello,

why this expression generate a memory error inside a script.py, but if I run it apart, it run correctly? I mean

python script.py #generates memory error

L = np.zeros((373,559,3,256), dtype=int) # it works fine

thanks, Jaime