0

I am trying to embedding Python with vs2010 and python2.7.9,when I import moudles using PyRun_SimpleString("import tables\n") ,It works error with missing MSVCR90.dll which shows below errors

but when I test “import tables” in pyhoth IDLE,it is right.

hewitt
  • 1
  • 1

1 Answers1

0

MSVCR90.dll is part of MSVC2008. Your code should work if you install MSVC2008 redistributables on your machine.

Nithish
  • 1,580
  • 12
  • 21
  • I have installed MSVC2008 redistributables,but the error is still exist. – hewitt Jan 13 '16 at 11:23
  • Could you give some details. Is your OS 32 bit or 64 bit? Is Python installation 32 bit or 64 bit? Is the redistributables you installed 32 bit or 64 bit? – Nithish Jan 13 '16 at 11:38
  • My system is win8.1 64bit, Python is 2.7.9 32bit, the redistributables is 32bit, and the program created by vs2010 is 32bit, when I import the other modules ,they are all right except the tables,and the pytables is tables-3.2.2-cp27-none-win32.whl – hewitt Jan 13 '16 at 11:59