Only Python libraries consisting of pure Python scripts can be used in the Python runtime environment. Libraries that require additional compiled objects are not supported due to the security concept. See online documentation "Python runtime environment --> Additional Python libraries" for further information.
As in the instruction is mentioned "Ensure you can run pip from the command line" I would say for your case that's a no, it cannot be used. But feel free to check the dependencies of the different files inside the wheel/package.
As an additional information, all libraries from(external page) python.org marked as "built.in" and "It is always available" are also part of the runtime.
... View more