maciejkula / spotlight

Deep recommender models using PyTorch.
MIT License
2.99k stars 423 forks source link

Conda Install Issues. #80

Closed RAbraham closed 6 years ago

RAbraham commented 6 years ago

Hi, I ran

conda install --prefix=venv3 -c maciejkula -c pytorch spotlight=0.1.2

and it returned

Fetching package metadata ...............
Solving package specifications:

PackageNotFoundError: Packages missing in current channels:

  - spotlight 0.1.2* -> pytorch 0.2.0

We have searched for the packages in the following channels:

  - https://conda.anaconda.org/maciejkula/osx-64
  - https://conda.anaconda.org/maciejkula/noarch
  - https://conda.anaconda.org/pytorch/osx-64
  - https://conda.anaconda.org/pytorch/noarch
  - https://repo.continuum.io/pkgs/main/osx-64
  - https://repo.continuum.io/pkgs/main/noarch
  - https://repo.continuum.io/pkgs/free/osx-64
  - https://repo.continuum.io/pkgs/free/noarch
  - https://repo.continuum.io/pkgs/r/osx-64
  - https://repo.continuum.io/pkgs/r/noarch
  - https://repo.continuum.io/pkgs/pro/osx-64
  - https://repo.continuum.io/pkgs/pro/noarch

I was able to install it a few days ago with the above command. Wonder if something changed?

I created a new project from scratch, created a new conda environment and ran

conda install -c maciejkula -c pytorch spotlight=0.1.2

and got the same error.

maciejkula commented 6 years ago

Thanks for the report: this is because the new PyTorch release moved to a different conda channel.

Can you try conda install --prefix=venv3 -c maciejkula -c pytorch spotlight=0.1.3? I just pushed a new version of Spotlight.

RAbraham commented 6 years ago

It works. Thanks!