D.Kim
D.Kim

Reputation: 171

How to download lmfit on Anaconda?

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

Answers (1)

HISI
HISI

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

Related Questions