tensorflow
ImportError: libcudnn.so.5: cannot open shared object file: No such file or directory
The version of tensorflow and the version of cudnn do not match.
Correspondence list: https://blog.csdn.net/qq_27825451/article/details/89082978
#### **` No such file`**
```make benchmark / tensorflow/core/public/session.h
It was time to compile. the path of tensorflow changed. To solve this problem, add a line below to your Makefile.
CFLAGS += -I/path/to/site-packages/tensorflow/include
# package
#### **`ImportError: You need `Cython` version 0.17 or later.`**
When pip install scikit-image == 0.9.3.
GL/glew.h
sudo apt-get install libglew-dev
# image
#### **`TypeError: Cannot handle this data type: (1, 1, 3), <f4`**
It came out when using Image.imsave of PIL. PIL's rgb image storage can only support 0-255 uint.
command: pytest test
The format of the test file must be test_xx.py to be inspected
xx_test is okay with py.test
Recommended Posts