user297850
user297850

Reputation: 8015

problems of importing winpython packages

I use pycharm to write python program. I have installed winpython for scientific computing. As this package included by winpython shows. It should include limfit. However, when I try the following example shown in winpython example, the limfit was not automatically included even I already import winpython

enter image description here

Upvotes: 0

Views: 666

Answers (1)

sebix
sebix

Reputation: 3230

Winpython is a Python distribution, not a package containing other packages.

First, download and install Winpython. Then configure Pycharm to use the Winpython distribution by File > Default Settings > Project Interpreter and add a new path with the python-... subdirectory in the winpython installation.

Then you have all the packages available, which are listed in on the Winpython-website.

Upvotes: 2

Related Questions