我最近有一个运行python脚本的网站。不幸的是,这个python脚本需要另一个python模块,但是我不知道如何在网站上安装它。如何为网站安装python模块。下面是我的代码
PHP:
react-native upgrade
Python代码:
<?php
$VAR = 'test';
$output = shell_exec('python test.py ' . $VAR);
//$output = shell_exec('python -m pip install requests'); <-- tried that but does not work.
echo $output;
?>
当我转到php页面时,我什么也没得到,但是如果我已标记导入请求和响应并进行打印,只需将“ print(“ Hi”)“放进去即可。有关如何安装请求的任何想法?
反正我有网站的外壳吗?
注意:我正在使用CPANEL。