We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I use the
ffn 0.1.9 <pip>
I try to import ffn
import ffn
Then it shows the error
In [1]: import ffn --------------------------------------------------------------------------- ImportError Traceback (most recent call last) <ipython-input-1-30624921af03> in <module>() ----> 1 import ffn /opt/anaconda/envs/py27matt/lib/python2.7/site-packages/ffn/__init__.py in <module>() ----> 1 from . import core 2 from . import data 3 4 from .data import get 5 #from .core import year_frac, PerformanceStats, GroupStats, merge /opt/anaconda/envs/py27matt/lib/python2.7/site-packages/ffn/core.py in <module>() 1 from __future__ import print_function ----> 2 from future.utils import listvalues 3 import random 4 from . import utils 5 from .utils import fmtp, fmtn, fmtpn, get_period_name ImportError: No module named future.utils
The text was updated successfully, but these errors were encountered:
Hey @jdkcupid,
I think you need to install the future library:
pip install future
This requirement was added in order to support Python3. I'll try to fix this so that it gets installed automatically with ffn.
Cheers, Phil
Sorry, something went wrong.
No branches or pull requests
I use the
I try to import ffn
Then it shows the error
The text was updated successfully, but these errors were encountered: