Luke
Luke

Reputation: 7099

'No-name-in-module' import error

I'm getting a 'No-name-in-module' import error whenever I try to import linalg from scipy I have no trouble importing scipy or anything else from scipy. For some reason it doesn't like linalg. Oddly, eclipse includes linalg under auto-completion.

I have tried:

I'm running anaconda on ubuntu 14.04

Upvotes: 5

Views: 11491

Answers (1)

Luke
Luke

Reputation: 7099

The problem seems to be coming from pylint. Error disappears if I add: # pylint: disable-msg=E0611 to the line

Upvotes: 10

Related Questions