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 matching distribution found for quantmod ... #5

Open
hugokoopmans opened this issue Nov 24, 2017 · 3 comments
Open

No matching distribution found for quantmod ... #5

hugokoopmans opened this issue Nov 24, 2017 · 3 comments

Comments

@hugokoopmans
Copy link

hugokoopmans commented Nov 24, 2017

Hi there,

What am i missing here:

pip install quantmod
Collecting quantmod
  Could not find a version that satisfies the requirement quantmod (from versions: )
No matching distribution found for quantmod

OS:
uname -a
Linux vaio 4.8.0-53-generic #56~16.04.1-Ubuntu SMP Tue May 16 01:18:56 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux

python
Python 3.6.1 |Anaconda custom (64-bit)| (default, May 11 2017, 13:09:58)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-1)] on linux

pip --version
pip 9.0.1 from /home/hugo/anaconda3/lib/python3.6/site-packages (python 3.6)

@LastAncientOne
Copy link

Hi. I am using windows 10. I ran python setup.py install. I was able to import quantmod as qm.
I have an issues about get_symbols.

File "", line 6, in
ch = qm.get_symbol('QQQ', start='01/01/2016')

AttributeError: module 'quantmod' has no attribute 'get_symbol'

@saurabhp75
Copy link

I am getting following error. I am on ubuntu 18.04 python 3.6.

pip install quantmod Collecting quantmod Could not find a version that satisfies the requirement quantmod (from versions: ) No matching distribution found for quantmod

@gb96
Copy link

gb96 commented Feb 19, 2023

Pip should be able to clone, install and build quantmod directly via the git source repo like this:

pip install git+https://github.com/jackluo/py-quantmod#egg=quantmod

This works to a degree but you may then get an error like:

ModuleNotFoundError: No module named 'quantmod.theming'

This is because submodules quantmod.theming and quantmod.vendors were not installed by pip.

If you clone the git repo and manually install the 2 submodules, you will get past that error but likely hit another:

ModuleNotFoundError: No module named 'talib'

Looks like the "optional" talib is actually required...

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