gpt4 book ai didi

php - Python Imports 不提供 PHP 中的输出

转载 作者:行者123 更新时间:2023-12-01 08:19:29 28 4
gpt4 key购买 nike

PHP 代码

<?php 
echo shell_exec(' python /Users/rushikesh/Sites/hello2.py ');
>?

Python代码

print('hello')

import numpy as np

print('hello2')

它只输出 hello,为什么代码在 import 语句之后没有给出任何输出。

我什至尝试寻找错误

echo shell_exec(' python /Users/rushikesh/Sites/hello2.py ');

但在导入语句后仍然得到空白输出

最佳答案

putenv('PYTHONPATH=/Users/rushikesh/anaconda3/lib/python3.6/site-packages:');

$command = escapeshellcmd('/Users/rushikesh/anaconda3/bin/python /Users/rushikesh/Sites/hello2.py');


output = shell_exec($command);

echo $output;

从'call python script *with non-standard library imported* from php的答案中找到'

关于php - Python Imports 不提供 PHP 中的输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54753059/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com