1

I am trying to run solr-to-es (https://github.com/o19s/solr-to-es) in Anaconda environment. I run the setup.py without errors, then when trying to execute "solr-to-es -h", I get "No module named 'solrSource'". I don't get this error when with a Python 2.x environment, however the requirement is Python 3.x.

1 Answers1

-1

Hack:

cd solr_to_es

python \__main__.py localhost:8983/solr/select localhost:9200 es_index solr_docs
barbsan
  • 3,418
  • 11
  • 21
  • 28