Installing Dependencies #5
Replies: 4 comments 7 replies
-
Hello, Ai-Ling Bonnet |
Beta Was this translation helpful? Give feedback.
-
I am still facing the same issue, could it be related to the anaconda version or python version? |
Beta Was this translation helpful? Give feedback.
-
Hi, I am getting the following error while creating a new virtual environment ... I have tried the absolute and relative path (onda env create -n 2022DSC --file <folder_path>/notebooks/environment.yml) but still facing this issue. Collecting package metadata (repodata.json): failed CondaHTTPError: HTTP 000 CONNECTION FAILED for url https://repo.anaconda.com/pkgs/main/win-64/repodata.json An HTTP error occurred when trying to retrieve this URL. If your current network has https://www.anaconda.com blocked, please file |
Beta Was this translation helpful? Give feedback.
-
Hi, |
Beta Was this translation helpful? Give feedback.
-
Hi froggers,
There have been a few people having issues installing the dependencies required for both challenges. If this is the case, try using
conda env create -n 2022DSC --file <folder_path>/notebooks/environment.yml
on the new environment.yml file recently uploaded to the git repo.If using the Azure VM deployment, installing using the requirements.txt file via
conda create -n 2022DSC --file <folder_path>/notebooks/requirements.txt
should hopefully work. Otherwise, please try the .yml approach above.If any issues with package installations arise, my suggestion would be to examine the requirements.txt file in the repo, identify the version of the package causing conflicts, and install that specific version via
conda install <package_name>=<package_version>
.Please direct any package installation issues to this thread and we will try our best to assist.
All the best!
Billy Dodds
Beta Was this translation helpful? Give feedback.
All reactions