py-quantmod
py-quantmod copied to clipboard
An error "No module named 'quantmod.theming'
Hi Jack ,thanks for the response. When I tested my installation through "import quantmod as qm", it reports an error "No module named 'quantmod.theming'", I found it happened in the "~\quantmod-0.1.3-py3.6.egg\quantmod\factory.py " ,line 14. My jupyter version is 4.3.0, python version is 3.6, TA-Lib vesion is 0.4.0. So I wonder what's wrong. Thanks.
Can you test in non-jupyter python?
Yes, now it works well,it's my fault.Thanks!
Hello, I have the same issue in PyCharm... What can i do? regards
same here
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]](mailto:[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'
]
)
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]](mailto:[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' ] )
When I replace it and run python setup.py install I get this error
-Traceback (most recent call last):
File "setup.py", line 4, in