Skip to content
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

Conda fails to install python-bioformats- incompatible with python 3? #142

Open
markemus opened this issue Jan 6, 2021 · 5 comments
Open

Comments

@markemus
Copy link

markemus commented Jan 6, 2021

I tried this in two environments, first with python3.9 and czifile installed, and then again in a fresh environment with python3.6. Same error.

conda install -c bioconda python-bioformats

returns

failed                                                                                 

UnsatisfiableError: The following specifications were found
to be incompatible with the existing python installation in your environment:

Specifications:

  - python-bioformats -> python[version='<3']

Your python: python=3.9

Does the conda version not support python3 for some reason? I see it's been updated recently so I'd be surprised.

@markemus
Copy link
Author

markemus commented Jan 7, 2021

After further testing, I was able to conda install -c bioconda python-bioformats successfully in a Python 2 conda environment. That doesn't really work for us so hopefully someone is able to clarify- I know python-bioformats supports Python 3, so why does the conda version not support it? Is there another version I should be installing instead?

@michaelmell
Copy link

@markemus I just ran into this issue as well with same error-message. Did you find a solution or work-around?
Regarding Python 3 support I only found this pull-request. From the discussion there (particularly the last post), I am not sure that it supports Python 3. Is this stated somewhere? (in other words: what makes you so sure it supports Python 3, before I continue trying it...)

@markemus
Copy link
Author

markemus commented Jan 14, 2021

@michaelmell We have python-bioformats 4.0.0 installed with pip3 in Python 3.6.9 on another system- I didn't install it myself, but I don't think they had any trouble and it works fine.

Python3 is also listed as an option in the setup.py file: https://github.com/CellProfiler/python-bioformats/blob/master/setup.py

@CotarP
Copy link

CotarP commented Jan 21, 2022

I don't know if it is still relevant but I had similar issue on windows 10.
The only way I managed to install it is to first install javabridge (not all python versions are supported, I'm working with 3.7):
https://anaconda.org/zacsimile/python-javabridge
and than install python-bioformats:
https://anaconda.org/bioconda/python-bioformats

@braymp
Copy link

braymp commented Jan 21, 2022

I'm running python 3.9. Using https://github.com/CellProfiler/CellProfiler/blob/master/setup.py#L64, I installed as much as I could with conda/mamba but found that some required pip as the proper versions were not available at any of the conda repos:
python-bioformats==4.0.5
matplotlib<2.0.0
cellprofiler-core==4.2.1
pyzmq==18.0.1

A couple of notes:

  • pip installing pyzmq gives an error with building the wheel, but subsequently succeeds with the legacy install.
  • I think I also needed to pip install h5py==3.2.1 even though it's available in conda, or else I got the following error:

Traceback (most recent call last):
File "C:\Users\brayma2.conda\envs\py38\Scripts\cellprofiler-script.py", line 33, in
sys.exit(load_entry_point('CellProfiler', 'console_scripts', 'cellprofiler')())
File "C:\Users\brayma2.conda\envs\py38\Scripts\cellprofiler-script.py", line 25, in importlib_load_entry_point
return next(matches).load()
File "C:\Users\brayma2.conda\envs\py38\lib\importlib\metadata.py", line 77, in load
module = import_module(match.group('module'))
File "C:\Users\brayma2.conda\envs\py38\lib\importlib_init_.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "", line 1014, in _gcd_import
File "", line 991, in _find_and_load
File "", line 975, in _find_and_load_unlocked
File "", line 671, in load_unlocked
File "", line 783, in exec_module
File "", line 219, in call_with_frames_removed
File "c:\users\brayma2\onedrive - novartis pharma ag\github\cellprofiler\master\cellprofiler_main
.py", line 14, in
import h5py
File "C:\Users\brayma2.conda\envs\py38\lib\site-packages\h5py_init
.py", line 33, in
from . import version
File "C:\Users\brayma2.conda\envs\py38\lib\site-packages\h5py\version.py", line 15, in
from . import h5 as _h5
File "h5py\h5.pyx", line 1, in init h5py.h5
ImportError: DLL load failed while importing defs: The specified procedure could not be found.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants