darts: [BUG] Fresh install only gives version 0.20.0 instead of 0.21.0

A fresh install of Darts with conda conda install -y -c conda-forge -c pytorch u8darts-all results only in version 0.20.0 instead of 0.21.0

print(darts.__version__) -> '0.20.0'

also the new data set is not available

from darts.datasets import AustralianTourismDataset -> ImportError: cannot import name 'AustralianTourismDataset' from 'darts.datasets' (/opt/conda/lib/python3.8/site-packages/darts/datasets/__init__.py)

Python 3.8.12 Conda 4.13.0

About this issue

  • Original URL
  • State: closed
  • Created 2 years ago
  • Comments: 17 (9 by maintainers)

Most upvoted comments

Looks like it’s still not installing. Sorry 😦

Strange, but unfortunately I’m not able to pinpoint the cause exactly. As your logs show, it might be a dependency conflict between certain Python and PyTorch versions on glibc? On my machine conda install -c pytorch -c conda-forge u8darts-all==0.21.0 python=3.9 fails, but the same command works with Python 3.8 and 3.10.

Since it seems to depend on system libraries, could you try with another Python version? If you give me the Docker image and tag I can also try to reproduce the issue there.