RJT1990 / pyflux

Open source time series library for Python
BSD 3-Clause "New" or "Revised" License
2.1k stars 240 forks source link

ImportError: No module named 'pyflux.other' #76

Closed juanpabloaj closed 7 years ago

juanpabloaj commented 7 years ago

When I try to import pyflux I get this error

python -c 'import pyflux'
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/Users/pablo/.envs/pyflux/lib/python3.5/site-packages/pyflux/__init__.py", line 17, in <module>
    from .other import *
ImportError: No module named 'pyflux.other'

Other info

$ pip list | grep pyflux
pyflux (0.4.13)

$ python --version
Python 3.5.1
RJT1990 commented 7 years ago

Thanks - silly mistake on my part, this is why I'm looking to get Travis set up as soon as possible...Should be fixed in the release I just pushed

juanpabloaj commented 7 years ago

travis show a failling build

https://travis-ci.org/RJT1990/pyflux/jobs/191094343

but in travis, I don't see what is the problem with the build.

RJT1990 commented 7 years ago

Travis is not set up yet so don't worry about that - the 0.4.14 release works on my local; working for you?

juanpabloaj commented 7 years ago

yes, now works 🎉

thanks

juanpabloaj commented 7 years ago

A question, in travis, why you use conda and load a virtualenv? why don't run the tests in normal python?