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

An error "No module named 'quantmod.theming' #4

Open
zeugmato opened this issue Oct 15, 2017 · 6 comments
Open

An error "No module named 'quantmod.theming' #4

zeugmato opened this issue Oct 15, 2017 · 6 comments

Comments

@zeugmato
Copy link

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.

@jackluo jackluo reopened this Oct 18, 2017
@jackluo
Copy link
Owner

jackluo commented Oct 18, 2017

Can you test in non-jupyter python?

@zeugmato
Copy link
Author

Yes, now it works well,it's my fault.Thanks!

@cryptonaut1357
Copy link

cryptonaut1357 commented Jan 22, 2018

Hello,
I have the same issue in PyCharm...
What can i do?
regards

@KIC
Copy link

KIC commented Sep 14, 2018

same here

@hikingyu
Copy link

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='[jackluo@plot.ly](mailto:jackluo@plot.ly)',
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'
]
)

@arunklama
Copy link

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='[jackluo@plot.ly](mailto:jackluo@plot.ly)',
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
exec (open('quantmod/version.py').read()) # noqa
FileNotFoundError: [Errno 2] No such file or directory: 'quantmod/version.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

6 participants