I have to use tensorflow on a server where I don't have access to pip install
or anything like that.
I know for custom python modules you want to import you can usually just do
import sys
sys.path.append('path/to/module')
import module
Is there a way I can just download tensorflow library and import it like this?