Verified-Intelligence / alpha-beta-CROWN

alpha-beta-CROWN: An Efficient, Scalable and GPU Accelerated Neural Network Verifier (winner of VNN-COMP 2021, 2022, 2023, and 2024)
Other
243 stars 60 forks source link

PackagesNotFoundError when Creating Conda Environment for alpha-beta-CROWN #39

Closed r11942152 closed 1 year ago

r11942152 commented 1 year ago

Dear alpha-beta-CROWN Team,

I hope this message finds you well. I've been working on running your latest version of Alpha-Beta-CROWN, but I've encountered a PackagesNotFoundError while executing the following command:

conda create -f complete_verifier/environment.yaml --name alpha-beta-crown

The following command will also show the same error:

conda create -f complete_verifier/environment_2022.yaml --name alpha-beta-crown
conda create -f complete_verifier/environment_pyt111.yaml --name alpha-beta-crown
conda create -f complete_verifier/environment_pyt200.yaml --name alpha-beta-crown
conda create -f complete_verifier/environment_pyt201.yaml --name alpha-beta-crown

The error message I received is as follows:

Collecting package metadata (current_repodata.json): done
Solving environment: failed with repodata from current_repodata.json, will retry with next repodata source.
Collecting package metadata (repodata.json): done
Solving environment: failed

PackagesNotFoundError: The following packages are not available from current channels:

  - complete_verifier/environment.yaml

Current channels:

  - 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
  - https://conda.anaconda.org/conda-forge/linux-64
  - https://conda.anaconda.org/conda-forge/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.

I would greatly appreciate your guidance and support to help me overcome this issue.

Thank you in advance for your help.

System configuration:

shizhouxing commented 1 year ago

It should be conda env create, not conda create. See https://github.com/Verified-Intelligence/alpha-beta-CROWN#installation-and-setup.

r11942152 commented 1 year ago

@shizhouxing It works. Thank you for your assistance!