Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to Install Tensorflow (MemoryError)

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

like image 932
David_Zizu Avatar asked Jun 02 '17 18:06

David_Zizu


Video Answer


1 Answers

Try installing without caching: pip install --no-cache-dir tensorflow.

like image 199
Auggie N Avatar answered Oct 18 '22 19:10

Auggie N