简体   繁体   中英

Execute python code inside php in /var/www/html directory

Error coming when running a python code which is using tensorflow , inside the php code. Error is :-

Traceback (most recent call last): 

File "Loader.py", line 5, in import tensorflow as tf 
File "/usr/local/lib/python2.7/dist-packages/tensorflow/__init__.py", line 23, in from tensorflow.python import * 
File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/__init__.py", line 48, in from tensorflow.python import pywrap_tensorflow 
File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/pywrap_tensorflow.py", line 28, in _pywrap_tensorflow = swig_import_helper() 
File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/pywrap_tensorflow.py", line 24, in swig_import_helper _mod = imp.load_module('_pywrap_tensorflow', fp, pathname, description) 
ImportError: /usr/local/lib/python2.7/dist-packages/tensorflow/python/_pywrap_tensorflow.so: invalid ELF header 

Few lines of Python code in which trying to execute the python code are:-

$temp =  shell_exec('python Loader.py 2>&1') or die('cannot run Loader.py') ;
        echo $temp;

Create a new virtual environment. Install your dependencies and then run your code.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM