Error Lopengl32 No Such File Or Directory Dev C++

Nov 09, 2017  Dismiss Join GitHub today. GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together. Nov 11, 2016  Join GitHub today. GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.

Join GitHub today

GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.

Sign up New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Comments

commented Mar 27, 2017

ErrorError

Error Lopengl32 No Such File Or Directory Dev C 5

I have install the FFTW3 but when I run python setup.py build_ext
the error show with
lq@lq-virtual-machine:~/下载/lear-gist-python-master$ python setup.py build_ext -I /usr/local/include -L /usr/local/lib
running build_ext
building 'gist' extension
gcc -pthread -fno-strict-aliasing -g -O2 -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -fPIC -I/home/lq/anaconda2/lib/python2.7/site-packages/numpy/core/include -I/usr/local/include -I/home/lq/anaconda2/include/python2.7 -c lear_gist-1.2/gist.c -o build/temp.linux-x86_64-2.7/lear_gist-1.2/gist.o -DUSE_GIST -DSTANDALONE_GIST
lear_gist-1.2/gist.c:14:19: fatal error: fftw3.h: 没有那个文件或目录
compilation terminated.
error: command 'gcc' failed with exit status 1

the chinesemeans : no such file or directory

Error Lopengl32 No Such File Or Directory Dev C 2017

commented Apr 4, 2017

It seems FFTW is not installed at /usr/local/include and /usr/local/lib.
Please check fftw3.h exists in /usr/local/include and libfftw3f.a exists in /usr/local/lib.

Alternatively, you can specify the installation path of FFTW by setting --prefix option to ./configure at building it.
For example,

then FFTW will be installed in ~/local like ~/local/include/fftw3.h and ~/local/lib/libfftw3f.a.
After that, you can build lear-gist-python by

I updated README during writing this answer, so please check it too.

Thank you.

closed this May 11, 2017

Error Lopengl32 No Such File Or Directory Dev C Free

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment