smarsland / AviaNZ

GNU General Public License v3.0
28 stars 14 forks source link

requirements.txt needs a small fix for Linux installations #101

Open cdienem opened 8 months ago

cdienem commented 8 months ago

When installing dependencies for the Linux version in (a clean installation of) Python 3.6 using

pip install -U -r requirements.txt

there are three small issues coming up.

  1. scikit-image: is only available up to 0.17.2 in Python 3.6 so the requirement of 0.18.3 cannot be met. Removing the version specification helps (installs 0.17.2)
  2. joblib==0.13.2 is leading to unsolvable dependency conflicts. therefore edit it to joblib>=0.13.2
  3. Enable installaton of joblib, llvmlite, matplotlib, PyWavelets and scikit-learnby default as they will not be shipped by a clean Python 3.6 installation or any of the packages installed above.