I'm trying to install webp in PyCharm, but after
'pip install webp'
Please, help me. I've been trying to install webp for a few days and have already lost all hope. I just don't know what to do. Thanks for all advices!
I'm trying to install webp in PyCharm, but after
'pip install webp'
Please, help me. I've been trying to install webp for a few days and have already lost all hope. I just don't know what to do. Thanks for all advices!
It seems the webp
Python package requires Conan C/C++ package manager to build itself from sources: https://github.com/anibali/pywebp, it is a binding over that package.
Conan will use when necessary to build from sources (https://conan.io/center has many pre-compiled binaries for many platforms) a C/C++ compiler in your machine. It will try to auto-detect it and define the default
profile file that will contain definitions for compiler
, compiler.version
and other configuration.
In this case, it seems you don't have a working compiler in your system, I would try to install in Windows the free Visual Studio Community, which is the mainstream C/C++ compiler.
I would also suggest to report an issue in https://github.com/anibali/pywebp/issues, and ask for an update, there are now new versions of libwebp C++ library in https://conan.io/center/libwebp, which will be more supported and maintained.