py-quantmod icon indicating copy to clipboard operation
py-quantmod copied to clipboard

No matching distribution found for quantmod ...

Open hugokoopmans opened this issue 7 years ago • 3 comments

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)

hugokoopmans avatar Nov 24 '17 22:11 hugokoopmans

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'

LastAncientOne avatar Nov 27 '17 21:11 LastAncientOne

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

saurabhp75 avatar Jul 26 '18 02:07 saurabhp75

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...

gb96 avatar Feb 19 '23 01:02 gb96