“ImportError: DLL load failed” when trying to import pymssql on Windows

前端 未结 3 784
囚心锁ツ
囚心锁ツ 2020-12-07 03:38

I\'m trying to use the example code from here:

http://www.pymssql.org/en/latest/pymssql_examples.html

I installed the pymmsql module using pip.

3条回答
  •  长情又很酷
    2020-12-07 04:15

    I had this issue. The simplest solution for me was just to uninstall 2.1.2 then install 2.1.1:

    pip uninstall pymssql

    pip install "pymssql==2.1.1"

提交回复
热议问题