Closed Lmy0217 closed 4 years ago
Same here .... when try running some samples, it fires error "ImportError: cannot import name 'cloud'" Using wheel tensorflow armv7l python35 on Raspberry Pi / Ubuntu 16.04 + virtualenvs.
Any workarounds to avoid this error?
Same here... running samples... Using wheel tensorflow armv7l python35 on Raspberry Pi / Raspbian Linux 9 (stretch)
thats is a issue of tensorflow project https://github.com/tensorflow/tensorflow/issues/23976
I tried comments the line from tensorflow.contrib import cloud
but happened another errors.
@jw-redpanda @miguelcpsbrito @lhelontra Now I think this may not be a package problem. Contrib of TensorFlow is inherently unstable. Contrib should be avoided as much as possible and the code still works properly.
Hi @Lmy0217, @lhelontra
Would you please comment on such problem for tensorflow-1.13.1-cp35-none-linux_aarch64.whl
My solution
/usb/venv/tf1.13/lib/python3.5/site-packages/tensorflow/contrib/__init__.py
#if os.name != "nt":
#from tensorflow.contrib import cloud
I installed
tensorflow-1.12.0-cp35-none-linux_aarch64.whl
. When I run mnist code, I got an error about import package as follows:I checked
/usr/local/lib/python3.5/dist-packages/tensorflow/contrib/
and there is notcloud
folder. Is there something missing?