Unable to install Tensorflow (MemoryError)

I tried to install Tensorflow on Linux Ubuntu 16.04 from source and use pip and I keep getting the following error return base64.b64encode (b) .decode ("ascii") MemoryError . I tried to solve this but only found a site written in Chinese (maybe) http://juncollin.hatenablog.com/entry/2017/03/05/025318 which doesn't really help.

+3


source to share


1 answer


Try to install the non-cached: pip install --no-cache-dir tensorflow

.



+17


source







All Articles