当我使用以下命令在Ubuntu Pycharm项目中运行这样的代码时
import tifffile
first_image = tifffile.imread("first.tif")
我得到警告
/home/gradescan/PSTraining/tifffile.py:156: UserWarning: failed to import the
optional _tifffile C extension module.
Loading of some compressed images will be slow.
Tifffile.c can be obtained at http://www.lfd.uci.edu/~gohlke/
"failed to import the optional _tifffile C extension module.\n"
如何消除此警告?更好的是,如何将_tifffile C扩展名合并到我的PyCharm项目中?
如果重复,请不要关闭,因为在错误消息标题上搜索不会给我(和其他人)任何东西。
答案 0 :(得分:0)
从https://pypi.org/project/tifffile/下载tifffile
pip install tifffile
python setup_tifffile_c.py build_ext --inplace