-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Install error #46
Comments
Thank you for the issue! Could you please help by providing your environment details Desktop (please complete the following information):
With specific regard to Python version, pip version, etc Did any errors show when you ran |
OS: Windows 11 errors show when I ran pip install pandas_alive: Collecting pandas_alive ERROR: Command errored out with exit status 1: The headers or library files could not be found for zlib, Please see the install instructions at: Traceback (most recent call last): During handling of the above exception, another exception occurred: Traceback (most recent call last): The headers or library files could not be found for zlib, Please see the install instructions at: ERROR: Failed building wheel for pillow
ERROR: Command errored out with exit status 1: 'C:\Users\user\anaconda3\python.exe' -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\Users\user\AppData\Local\Temp\pip-install-_bfahuh4\pillow_f2d98a0491b54687b1609e1ea2979644\setup.py'"'"'; file='"'"'C:\Users\user\AppData\Local\Temp\pip-install-_bfahuh4\pillow_f2d98a0491b54687b1609e1ea2979644\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(file) if os.path.exists(file) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' install --record 'C:\Users\user\AppData\Local\Temp\pip-record-dwcvb1y6\install-record.txt' --single-version-externally-managed --compile --install-headers 'C:\Users\user\anaconda3\Include\pillow' Check the logs for full command output. |
Hmm seems very strange it's trying to install Pillow <8.0.0 as the pyproject.toml is asking for <9.0.0 as the error above is fixed in >8.0.0 as noted in: https://stackoverflow.com/questions/60590809/cannot-pip-install-pillow-7-on-python-3-9 Are you using pip within conda? Can you try using conda to install pandas_alive instead with |
conda install pandas_alive -c conda-forge is also not working |
I've installed Anaconda and using jupyter notebook from the navigator |
Have you activated the environment with |
Also looking at the error, it seems wherever you've run the command from doesn't recognize anaoncda, from memory the windows distributable comes with an application called Anaconda Navigator |
I get this error on several Windows systems and have done some testing:
ERROR: Failed building wheel for pillow
I can't use conda on the system, so I used PIP and I don't want to build it myself. Too bad, would love to use pandas_alive... Here the details: `pip install pandas_alive × Running setup.py install for pillow did not run successfully.
note: This error originates from a subprocess, and is likely not a problem with pip. × Encountered error while trying to install package. note: This is an issue with the package mentioned above, not pip. |
I am having the same issue, with Python 3.10.8. I have already pillow 9.5 installed but the package is trying to install Pillow-7.2.0. |
I spent a freaking weekend on this! Install external dependencies manually. 🔗 https://pillow.readthedocs.io/en/latest/installation.html#external-libraries
I have installed a bunch of other stuff, but I am not sure if they helped. |
This seems to be an error with the version of pillow required for the package. It is trying to install pillow- 7.2.0 which is not compatible with higher versions of Python (3.9 onwards) |
anyone solved this issue? I've got the same problem with Windows10 +jupyter (python 3.11). there is a strange sympton, if I import pandas_alive from CMD prompt, it was work, but fail in jupyter(ModuleNotFoundError: No module named 'pandas_alive)'. do I need change the setting of system environment or something??? any comments will be great appriciate. Preparing metadata (setup.py): started python setup.py bdist_wheel did not run successfully. [184 lines of output] The headers or library files could not be found for zlib, Please see the install instructions at: Traceback (most recent call last): During handling of the above exception, another exception occurred: Traceback (most recent call last): The headers or library files could not be found for zlib, Please see the install instructions at: [end of output] note: This error originates from a subprocess, and is likely not a problem with pip. |
While installing the pandas_alive using pip install pandas_alive, following error message shows: ModuleNotFoundError: No module named 'pandas_alive'
The text was updated successfully, but these errors were encountered: