py-quantmod
py-quantmod copied to clipboard
No module named 'quantmod.theming'
Hello, I'm trying to run dash_example_simple.py, but I received the following error message "ModuleNotFoundError: No module named 'quantmod.theming'" . I already tried looking at a previous post regarding the same issue, but wasn't able to figure it out. Can anyone help? Thanks.
Traceback (most recent call last):
File "quantmod_demo.py", line 8, in
this is install mistake.I try replace the setup.py and is ok. setup.py:
from setuptools import setup,find_packages
exec (open('quantmod/version.py').read()) # noqa
setup(
name='quantmod',
version=__version__, # noqa
author='Jack Luo',
author_email='[email protected]',
description="Powerful financial charting library based on R's Quantmod.",
long_description=open('README.md').read(),
license='MIT',
keywords=['pandas', 'plotly', 'ta-lib', 'data-visualization',
'data-science', 'quantitative-finance', 'quantitative-trading'],
packages=find_packages(),
install_requires=[
'numpy',
'pandas',
'pandas_datareader',
'plotly'
]
)
I also get this error....
error remains with the mentioned changed setup.py