You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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 therise
installation.After
conda install webcolors
, therise
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 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.
The text was updated successfully, but these errors were encountered: