-
Couldn't load subscription status.
- Fork 0
Description
Really nice work! The CSV files are great!
I had a few problems when installing the script (got it to run after fixing them):
-
Matplotlib threw
"ModuleNotFoundError: No module named 'matplotlib.finance'". According to their docs it has been moved to its own library called "mpl_finance". Here I had to clone https://github.com/matplotlib/mpl_finance and manually runpython setup.py install. Then change the importfrom matplotlib.financetofrom mpl_finance. -
The import
from kraken_data import Krakenthrew an error. Copying the filetest_kraken_data.pyinto thedata/directory fixed the issue. -
The matplotlib lib threw an error with
RuntimeError: Python is not installed as a framework .... The fix is to create a configfile with the backend set (https://stackoverflow.com/questions/21784641/installation-issue-with-matplotlib-python)