Skip to content
New issue

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

No module named 'quantmod.theming' #9

Open
snowriverout opened this issue Jun 20, 2018 · 4 comments
Open

No module named 'quantmod.theming' #9

snowriverout opened this issue Jun 20, 2018 · 4 comments

Comments

@snowriverout
Copy link

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.

@snowriverout
Copy link
Author

Traceback (most recent call last):
File "quantmod_demo.py", line 8, in
import quantmod as qm
File "/anaconda3/lib/python3.6/site-packages/quantmod/init.py", line 23, in
from .core import *
File "
/anaconda3/lib/python3.6/site-packages/quantmod/core.py", line 13, in
from .chart import Chart
File "/anaconda3/lib/python3.6/site-packages/quantmod/chart.py", line 22, in
from . import factory
File "
/anaconda3/lib/python3.6/site-packages/quantmod/factory.py", line 14, in
from .theming.skeleton import SKELETON
ModuleNotFoundError: No module named 'quantmod.theming'

@hikingyu
Copy link

hikingyu commented Feb 13, 2019

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'
    ]
)

@mtwichan
Copy link

I also get this error....

@KIC
Copy link

KIC commented Jun 26, 2019

error remains with the mentioned changed setup.py

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants