Error when Creating the Environment
Thank you for your insightful work. When I reimplement the environment, it seems there is an update on intel end, which resulted in some packages cannot be found in current channels:
- no intel channel found ----- change the intel to the new intel-hosted channel.
- after changing the channel, it says many packages are not available in these channels.
Does anyone encounter the same issue? How to solve it? Thank you very much.
$ conda env create -f environment.yml Channels:
- https://software.repos.intel.com/python/conda
- open3d-admin
- anaconda
- conda-forge
- defaults Platform: linux-64 Collecting package metadata (repodata.json): done Solving environment: failed
PackagesNotFoundError: The following packages are not available from current channels:
- tbb==2021.5.0=intel_707
- scikit-learn-intelex==2021.5.1=py38_intel_803
- scikit-learn==0.24.2=py38ha3320cb_4
- mkl==2022.0.1=intel_117
- joblib==1.0.1=py38h3f38642_0
- intelpython==2022.0.0=0
- intel-openmp==2022.0.1=intel_3633
- intel-opencl-rt==2022.0.1=intel_3633
- intel-cmplr-lic-rt==2022.0.1=intel_3633
- intel-cmplr-lib-rt==2022.0.1=intel_3633
- icc_rt==2022.0.1=intel_3633
- dpcpp-cpp-rt==2022.0.1=intel_3633
- dal==2021.5.1=intel_803
- daal4py==2021.5.1=py38_intel_803
Current channels:
- https://software.repos.intel.com/python/conda/linux-64
- https://conda.anaconda.org/open3d-admin/linux-64
- https://conda.anaconda.org/anaconda/linux-64
- https://conda.anaconda.org/conda-forge/linux-64
- https://repo.anaconda.com/pkgs/main/linux-64
- https://repo.anaconda.com/pkgs/r/linux-64
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.
I filtered all the intel-related packages, and below are the packages i cannot installed and the errors.
Manual install:
OK - daal4py==2021.5.1
No - dal==2021.5.1 Could not find a version that satisfies the requirement dal==2021.5.1 (from versions none)
OK - dpcpp-cpp-rt==2022.0.1
No - icc_rt==2022.0.1 Could not find a version that satisfies the requirement icc_rt==2022.0.1 (from versions 16.0.3, 2018.0.3, 2019.0, 2020.0.133)
OK - intel-cmplr-lib-rt==2022.0.1 already satisfied
OK - intel-cmplr-lic-rt==2022.0.1 already satisfied
OK - intel-opencl-rt==2022.0.1 already satisfied
OK - intel-openmp==2022.0.1 already satisfied
No - intelpython==2022.0.0 Could not find a version that satisfies the requirement intelpython==2022.0.0 (from versions none)
OK - mkl==2022.0.1
OK - scikit-learn-intelex==2021.5.1
OK - scikit-learn==0.24.2
No - tbb==2021.5.0 Could not find a version that satisfies the requirement tbb==2021.5.0 (from versions 2018.0.4, 2019.0, 2020.0.133, 2020.3.254, 2021.1.1, 2021.2.0, 2021.3.0, 2021.4.0, 2021.5.1, 2021.6.0, 2021.7.0, 2021.7.1, 2021.8.0, 2021.9.0, 2021.10.0, 2021.11.0, 2021.12.0, 2021.13.0, 2021.13.1)
What does these failed-installed libraries do in this project? can I go ahead to reimplement the project without installing these or install another version.