When I try to install the .whl module via pip, I get an error about the incompatibility of the package. And this is with all the packages with cp35m in the title. But modules without cp35m are installed just with a bang. What could be the problem?
1 answer
cp means that wheel is intended for the CPython interpreter.
35 means that for version 3.5 of the interpreter.
m - means using PyMalloc for memory management.
If the file name after the cp35m characters cp35m goes with the .whl extension, then the package is cross-platform, and then it remains only to make sure that you are using Python 3.5. This can be done by running the interpreter with the -V key.
If there are other characters in the file name, such as win_amd64 , then it is intended for a specific operating system of a certain capacity.
|