我正在使用php开发一个网站,该网站调用python程序进行一些处理。
在python中,我正在使用Psycopg2库检查数据库。当我从服务器运行python时,它就像我想要的一样完美运行。当我尝试使用以下命令从PHP运行Python时,问题开始了:
$command = escapeshellcmd('//directory to python //directory to python program');
system($command);
我已经在python代码中进行了测试,以检查导入过程中是否存在如下错误:
try:
import psycopg2
except ImportError as err:
print(err)
我得到以下输出:
DLL load failed: The specified module could not be found.
供您参考:
我已经使用pip导入了Psycopg2
pip install psycopg2
您有什么建议吗? 谢谢!