Closed bladerail closed 1 year ago
Describe the bug Import error on Windows: No module named 'posix'
The posix module does not come built-in with Python on the Windows OS. Version 1.16.0 works ok, but version 1.16.1 does not.
To Reproduce Steps to reproduce the behavior:
pip install pdf2image==1.16.1
from pdf2image import convert_from_path
ModuleNotFoundError: No module named 'posix'
Expected behavior Import should work as intended
Desktop (please complete the following information):
Additional context pip install pdf2image==1.16.0 works correctly because the change to pdf2image/pdf2image.py line 8 was done in 1.16.1.
pip install pdf2image==1.16.0
pdf2image/pdf2image.py
Looking into it.
Fixed in 1.16.2, thank you for raising this issue. I will pull the previous package from PyPI.
Describe the bug Import error on Windows: No module named 'posix'
The posix module does not come built-in with Python on the Windows OS. Version 1.16.0 works ok, but version 1.16.1 does not.
To Reproduce Steps to reproduce the behavior:
pip install pdf2image==1.16.1
ModuleNotFoundError: No module named 'posix'
Expected behavior Import should work as intended
Desktop (please complete the following information):
Additional context
pip install pdf2image==1.16.0
works correctly because the change topdf2image/pdf2image.py
line 8 was done in 1.16.1.