0
0

More than 3 years have passed since last update.

MAMPのPHPのexec()からpython3を簡単実行。

Posted at

MAMPのpythonはversion2なので、ずっとこの壁にぶつかってたんですが、

$command = "python test.py";
exec($command, $output, $return_var);

python→python3でできました。意外と簡単でした。

$command = "python3 test.py";
exec($command, $output, $return_var);
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0