Running into errors everywhere I look...
-
I'm getting very frustrated. I'm new to BT and I haven't been able to get a single example working properly, from this site or others. I'm running on a fresh RHEL8.3 system, Python 3.7.9, freshly-downloaded BT. Some examples:
-
Simple MAcross and others: "No module named '_tkinter'" in module cerebro.plot(). Docs online suggest that tk should be included in any current Python. I pip-installed it anyway. No improvement.
-
Portfolio rebalancing with AlphaVantage: "'Plot_OldSync' object has no attribute 'mpyplot'". That's the self.mpyplot.show() on line 817 of plot.py, in show(). mypyplot is defined on line 130 of plot.py, in plot():
import matplotlib.pyplot as mpyplot
I have no idea what order these get called, but somehow plot() is busted.
I've hit other problems too, but this is enough to get me started.
Any suggestions for fixing these problems?
Thanks! -
-
I searched through the community and I found someone else with a similar problem. The recommended solution was to install python-tk. My yum repositories don't have that package. There is python3-tkinter, but it's already installed.