-
Notifications
You must be signed in to change notification settings - Fork 0
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
What is needed? #3
Comments
Most of the time, the requirement error does not matter. One library may have some dependencies of recommended versions, but they are not required. The program can still work as long as the libraries are installed successfully.
In this case, you can upgrade the numpy and the pillow libraries to remove the error.
Best,
Yunzhi
…________________________________
From: Patricio Vela ***@***.***>
Sent: Tuesday, March 8, 2022 11:59 AM
To: ivapylibs/improcessor ***@***.***>
Cc: Subscribed ***@***.***>
Subject: [ivapylibs/improcessor] What is needed? (Issue #3)
During pip3 install:
***@***.***:~/python$ pip3 install -e improcessor/
Obtaining file:///home/mary/python/improcessor
Requirement already satisfied: matplotlib in /usr/lib/python3/dist-packages (from improcessor==1.0) (3.1.2)
Requirement already satisfied: numpy in /usr/lib/python3/dist-packages (from improcessor==1.0) (1.17.4)
Requirement already satisfied: opencv-contrib-python in /home/mary/.local/lib/python3.8/site-packages (from improcessor==1.0) (4.5.5.62)
Collecting scikit-image
Downloading scikit_image-0.19.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.0 MB)
|████████████████████████████████| 14.0 MB 3.7 MB/s
Collecting networkx>=2.2
Downloading networkx-2.7.1-py3-none-any.whl (2.0 MB)
|████████████████████████████████| 2.0 MB 35.8 MB/s
Requirement already satisfied: scipy>=1.4.1 in /home/mary/.local/lib/python3.8/site-packages (from scikit-image->improcessor==1.0) (1.8.0)
Collecting PyWavelets>=1.1.1
Downloading PyWavelets-1.2.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (6.3 MB)
|████████████████████████████████| 6.3 MB 26.5 MB/s
Collecting tifffile>=2019.7.26
Downloading tifffile-2022.2.9-py3-none-any.whl (180 kB)
|████████████████████████████████| 180 kB 40.9 MB/s
Collecting packaging>=20.0
Downloading packaging-21.3-py3-none-any.whl (40 kB)
|████████████████████████████████| 40 kB 8.9 MB/s
Collecting imageio>=2.4.1
Downloading imageio-2.16.1-py3-none-any.whl (3.3 MB)
|████████████████████████████████| 3.3 MB 35.1 MB/s
Requirement already satisfied: pillow!=7.1.0,!=7.1.1,!=8.3.0,>=6.1.0 in /usr/lib/python3/dist-packages (from scikit-image->improcessor==1.0) (7.0.0)
Requirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /usr/lib/python3/dist-packages (from packaging>=20.0->scikit-image->improcessor==1.0) (2.4.6)
ERROR: tifffile 2022.2.9 has requirement numpy>=1.19.2, but you'll have numpy 1.17.4 which is incompatible.
ERROR: imageio 2.16.1 has requirement numpy>=1.20.0, but you'll have numpy 1.17.4 which is incompatible.
ERROR: imageio 2.16.1 has requirement pillow>=8.3.2, but you'll have pillow 7.0.0 which is incompatible.
Installing collected packages: networkx, PyWavelets, tifffile, packaging, imageio, scikit-image, improcessor
Running setup.py develop for improcessor
Successfully installed PyWavelets-1.2.0 imageio-2.16.1 improcessor networkx-2.7.1 packaging-21.3 scikit-image-0.19.2 tifffile-2022.2.9
Note the following lines:
ERROR: tifffile 2022.2.9 has requirement numpy>=1.19.2, but you'll have numpy 1.17.4 which is incompatible.
ERROR: imageio 2.16.1 has requirement numpy>=1.20.0, but you'll have numpy 1.17.4 which is incompatible.
ERROR: imageio 2.16.1 has requirement pillow>=8.3.2, but you'll have pillow 7.0.0 which is incompatible.
—
Reply to this email directly, view it on GitHub<#3>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/ADDZ4KMQ7AGM5PHKYVKFWJLU66BPLANCNFSM5QG5O4UQ>.
You are receiving this because you are subscribed to this thread.Message ID: ***@***.***>
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
During pip3 install:
Note the following lines:
The text was updated successfully, but these errors were encountered: