pyxu-org / pyxu

Modular and scalable computational imaging in Python with GPU/out-of-core computing.
https://pyxu-org.github.io/
MIT License
117 stars 17 forks source link

Developer Install - ".[dev]" #17

Closed alec-flowers closed 2 years ago

alec-flowers commented 2 years ago

$ python3 -m pip install -e ".[dev]" On this command of the developer install, pip was searching for over an hour on determining ipython compatibility.

A fix that work was suggested by Joan which replaces this command: conda create -n pycsou --channel=conda-forge --file=conda/requirements.txt with: conda create -n pycsou --file=conda/requirements.txt -c conda-forge python=3.9

SepandKashani commented 2 years ago

The installation speed via pip is a known problem. It is the method described in the README at the moment because someone with no knowledge of python/conda can get a working install of pycsou from PyPI. Ultimately we need to create dedicated conda packages for pycsou which target Python3.8+.

A task to add to the roadmap...