solr_cli
solr_cli copied to clipboard
pygments missing in requirements.txt
when trying to sintall solr_cli from pip install :
ImportError: No module named pygments
I did pip install pygments
and went fine.
It also fails with No module named mysolr. I believe that this actually relates to the from solr_cli import __version__
line in setup.py. That file then imports mysolr
and pygments
, meaning that setup.py cannot be used without those packages already being installed.
Since the __version__
string isn't actually used in solr_cli.py
the best fix I can see would be just moving that into setup.py and removing the import.