3

The libmaxminddb c libary improves the performance of geo location look ups. But how can I install it on heroku? There is a linux package, but how can this be installed?

1 Answers1

0

just install it in your local virtual environmemt. then do pip freeze > requirements.txt. When you run your project on heroku next time it will automatically be installed.

Pradeep Saini
  • 306
  • 1
  • 3
  • 13
  • 2
    The obvious problem is that libmaxminddb is a c libary and therefore can't be installed as python package. –  Apr 24 '17 at 18:31