solr_cli icon indicating copy to clipboard operation
solr_cli copied to clipboard

pygments missing in requirements.txt

Open paulgirard opened this issue 11 years ago • 1 comments

when trying to sintall solr_cli from pip install :

ImportError: No module named pygments

I did pip install pygments

and went fine.

paulgirard avatar Aug 14 '13 10:08 paulgirard

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.

bw-matthew avatar Mar 19 '15 14:03 bw-matthew