Puedo intentar ejecutar el script de Python en Laravel. Estoy usando composer require symfony/process para esto. En realidad, no quiero usar shell_exec() . Cuando intento ejecutarlo, me devuelve un error. En la línea de comando, todo está bien. Mi secuencia de comandos de python se encuentra en la carpeta pública.
Mi controlador:
use Symfony\Component\Process\Process; use Symfony\Component\Process\Exception\ProcessFailedException; public function plagiarismCheck() { $process = new Process(['C:/Program Files/Python39/python.exe', 'C:/Users/User/Desktop/www/abyss-hub/public/helloads.py']); $process->run(); // executes after the command finishes if (!$process->isSuccessful()) { throw new ProcessFailedException($process); } return $process->getOutput(); }Escritura de Python:
print('Hello Python')Error:
The command ""C:/Program Files/Python39/python.exe" "C:/Users/User/Desktop/www/abyss-hub/public/helloads.py"" failed. Exit Code: 1(General error) Working directory: C:\Users\User\Desktop\www\abyss-hub\public Output: ================ Error Output: ================ Fatal Python error: _Py_HashRandomization_Init: failed to get random numbers to initialize Python Python runtime state: preinitialized.