Ohjeah / sparsereg

a collection of modern sparse (regularized) linear regression algorithms.
MIT License
63 stars 21 forks source link

Fails on import #8

Closed tawe141 closed 7 years ago

tawe141 commented 7 years ago
>>> import sparsereg
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "C:\Python27\lib\site-packages\sparsereg\__init__.py", line 1, in <module>
    from sparsereg.model import *
ImportError: No module named model
>>>

This error occurs in Python 2.7.11 and Anaconda Python 3.6, both on Windows 10 64-bit. Any help resolving this one?

Ohjeah commented 7 years ago

Hi, thanks for trying sparsereg. The error is fixed now - I always install in developer modus and did not catch this mistake. Please try the latest version on pip with python 3.5+

tawe141 commented 7 years ago

Works great, thanks!