PyPy 7.3.4: Unable to import msilib "No module named '_msi'"
The build for pycurl in conda-forge fails with No module named '_msi'
, see https://github.com/conda-forge/pycurl-feedstock/pull/15
Unfortunately I don't have a Windows machine to test but I think this is a PyPy bug as I can't find an implementation for it.
Additionally, if I test on Linux I find that I get the same error despite the fact this module is only supposed to be available on Windows:
PyPy:
Python 3.7.10 (51efa818fd9b24f625078c65e8e2f6a5ac24d572, Apr 09 2021, 13:41:19)
[PyPy 7.3.4 with GCC 9.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>> import msilib
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/cburr/miniconda3/envs/test/lib-python/3/msilib/__init__.py", line 3, in <module>
from _msi import *
ModuleNotFoundError: No module named '_msi'
cpython:
Python 3.7.6 | packaged by conda-forge | (default, Jun 1 2020, 18:46:49)
[GCC 7.5.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import msilib
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'msilib'
>>>