py-quantmod
py-quantmod copied to clipboard
No matching distribution found for quantmod ...
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)
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 "
AttributeError: module 'quantmod' has no attribute 'get_symbol'
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
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...