imi-bigpicture / wsidicomizer

Python library for converting WSI files to DICOM
Apache License 2.0
54 stars 7 forks source link

Install with openslide support fails #67

Closed Daniel300000 closed 1 year ago

Daniel300000 commented 1 year ago

Hi!

I tried to install wsidicomizer with OpenSlide support because of Mirax (.mrxs).

When I execute the pip command as described in the README:

pip install wsidicomizer --extras openslide

I get the following error:

Usage: pip install [options] [package-index-options] ... pip install [options] -r [package-index-options] ... pip install [options] [-e] ... pip install [options] [-e] ... pip install [options] <archive url/path> ...

no such option: --extras

erikogabrielsson commented 1 year ago

Hi @Daniel300000 The command described in the readme is not correct, the correct command should be: pip install wsidicomizer[openslide]

Daniel300000 commented 1 year ago

Thank you!