I am experiencing a weird issue, on ubuntu 14.04 with python2.7.9 installed in a custom folder when trying to install tensorflow from inside a virtualenv that is using the custom python build pip doesn't seem to find tensorflow.
virtualenv venv --python=/opt/python279/bin/python2.7
cd venv
source bin/activate
pip install tensorflow
Collecting tensorflow Could not find a version that satisfies the requirement tensorflow (from versions: ) No matching distribution found for tensorflow
other packages install normally :/ I am utterly confused
Ubuntu 16.04 or later (64-bit)
– emartinellivirtualenv --system-site-packages
on virtualenv creation? – emartinelli/opt/python279/bin/python2.7 -c "import sysconfig;abiflags=('m' if sysconfig.get_config_var('WITH_PYMALLOC') else '')+('u' if sysconfig.get_config_var('WITH_WIDE_UNICODE') else '')+('d' if sysconfig.get_config_var('WITH_PYDEBUG') else ''); print(abiflags)"
print? – hoefling