How do I import the tensorflow module using the full path where I installed it?
I'm trying something like this, but I'm not sure which file has the tensorflow module as the tensorflow installation added many py files.
import sys
sys.path.append('/python/tensorflow')
from ? import tensorflow
Note: I installed tensorflow in a different folder using pip install tensorflow --target:'/python/tensorflow' because I don't have access to the Python folder with the libs which is configured in the system variables.