AllenDowney / ModSimPy

Text and supporting code for Modeling and Simulation in Python
https://allendowney.github.io/ModSimPy/
MIT License
823 stars 1.76k forks source link

Installing pint with Python 3.8 #59

Closed takmark closed 3 years ago

takmark commented 3 years ago

Downloaded current version (as of April 2021) Anaconda Python 3.8 UnsatisfiableError when trying conda install -c unidata pint as in book Release 4:

UnsatisfiableError: The following specifications were found to be incompatible with the existing python installation in your environment:

Specifications:

Your python: python=3.8

Thanks for looking into it.

moorepants commented 3 years ago

Installing from the unidata channel may cause incompatilities. I recommend installing without that channel:

conda install pint

Or using the conda-forge channel as it offers the widest set of compatible packages.

conda install -c conda-forge pint
AllenDowney commented 3 years ago

Thanks, @moorepants