Reputation: 171
I ran this on the Anaconda Prompt to install lmfit:
conda install -c conda-forge lmfit
However when I type:
import lmfit
I get:
ModuleNotFoundError: No module named 'lmfit'
Why does Python not recognize that I downloaded lmfit?
Upvotes: 2
Views: 4340
Reputation: 4797
Try to swipe up the channel of the package:conda-forge
by GSECARS
, like:
conda install -c GSECARS lmfit
hope that helps
Upvotes: 2