0

I want to integrate nexmo into my Python product, so that I can send SMS. On my localhost (Python 3.6.1), using this, I have installed it easily by

pip intall nexmo

However now I want to move everything to the server and the

pip intall nexmo

fails:enter image description here

Edit: I also tried the "easy_install", as indicated in this other post on stackoverflow: "pip install gives error: Unable to find vcvarsall.bat " - but that also did not work. enter image description here

Could anyone please help why?

Thanks!

Yura
  • 2,381
  • 8
  • 33
  • 44
  • 1
    Possible duplicate of [pip install gives error: Unable to find vcvarsall.bat](https://stackoverflow.com/questions/19830942/pip-install-gives-error-unable-to-find-vcvarsall-bat) – fenceop Jun 09 '17 at 18:58
  • 1
    You both got the error message `Unable to find vcvarsall.bat`. Did you try the accepted answer? Using `easy_install` seems fairly easy and might solve your problem. – fenceop Jun 09 '17 at 19:14
  • Thanks @fenceop. Yes, I tried and it did not work - please see edited question – Yura Jun 09 '17 at 19:51

1 Answers1

1

I fixed it using this link send to me by Nexmo support team: https://blogs.msdn.microsoft.com/pythonengineering/2016/04/11/unable-to-find-vcvarsall-bat/

Yura
  • 2,381
  • 8
  • 33
  • 44