Creating a Conda environment, on a fresh anaconda installation, from environment.yml was failing with the following error: "DistributionNotFound: The 'webcolors>=1.11; extra == "format-nongpl"' distribution was not found and is required by jsonschema". I built a new Conda environment step by step, using Python 3.9, and traced the error to the rise installation.
After conda install webcolors, the rise installation failed with: "DistributionNotFound: The 'uri-template; extra == "format-nongpl"' distribution was not found and is required by jsonschema". So, the jsonschema subdependency seemed to be having issues.
However, after conda install jsonschema (which was successful), I was able to install rise.
I was not able to determine the cause of the jsonschema issues. If another workshop is given in the future, you may want to test if creating a conda environment from environment.yml is still working.
Creating a Conda environment, on a fresh anaconda installation, from
environment.ymlwas failing with the following error: "DistributionNotFound: The 'webcolors>=1.11; extra == "format-nongpl"' distribution was not found and is required by jsonschema". I built a new Conda environment step by step, using Python 3.9, and traced the error to theriseinstallation.After
conda install webcolors, theriseinstallation failed with: "DistributionNotFound: The 'uri-template; extra == "format-nongpl"' distribution was not found and is required by jsonschema". So, the jsonschema subdependency seemed to be having issues.However, after
conda install jsonschema(which was successful), I was able to installrise.I was not able to determine the cause of the jsonschema issues. If another workshop is given in the future, you may want to test if creating a conda environment from environment.yml is still working.