[Bug] Conda install command in README cannot find merlin-loader package
beckernick opened this issue · 1 comments
Using the README's conda install command in a fresh environment fails with an error indicating the package is not available from any channels. I see there is a merlin-dataloader package in the nvidia channel associated with this repository. Should we be using this instead and update the README command?
(base) nicholasb@nicholasb-HP-Z8-G4-Workstation:~/NVIDIA$ mamba create -n test -c conda-forge python=3.7
...
(base) nicholasb@nicholasb-HP-Z8-G4-Workstation:~/NVIDIA$ conda activate test
(test) nicholasb@nicholasb-HP-Z8-G4-Workstation:~/NVIDIA$ conda install -c nvidia -c rapidsai -c numba -c conda-forge merlin-loader python=3.7 cudatoolkit=11.2
Collecting package metadata (current_repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Collecting package metadata (repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
PackagesNotFoundError: The following packages are not available from current channels:
- merlin-loader
Current channels:
- https://conda.anaconda.org/nvidia/linux-64
- https://conda.anaconda.org/nvidia/noarch
- https://conda.anaconda.org/rapidsai/linux-64
- https://conda.anaconda.org/rapidsai/noarch
- https://conda.anaconda.org/numba/linux-64
- https://conda.anaconda.org/numba/noarch
- https://conda.anaconda.org/conda-forge/linux-64
- https://conda.anaconda.org/conda-forge/noarch
- https://repo.anaconda.com/pkgs/main/linux-64
- https://repo.anaconda.com/pkgs/main/noarch
- https://repo.anaconda.com/pkgs/r/linux-64
- https://repo.anaconda.com/pkgs/r/noarch
To search for alternate channels that may provide the conda package you're
looking for, navigate to
https://anaconda.org
and use the search bar at the top of the page.
@mikemckiernan and @edknv hello. do you mind to test Nick's question above and update the Readme accordingly? Btw, our read me gives this command for conda installation conda install -c nvidia -c rapidsai -c numba -c conda-forge merlin-dataloader python=3.7 cudatoolkit=11.2
. I see that it uses Python 3.7. I assume our never lib (nvt, core, ..) versions do not support 3.7. so we need 3.8+, dont we? thanks!