Closed elliotmoule closed 6 years ago
Hi,
Thank you for your fantastic GIT. I've been following along with your Azure and Custom Vision work, and am now trying to implement on my own Raspberry Pi 3.
When building the provided solution (with no changes), I ran into an issue with installing tensorflow, with broken connection errors (I'm guessing the link is no longer valid?). I was going to just update my own, though unsure whether a specific version is needed, so thought I should let you know, and hope you can help me :)
I am running the solution with VS Code, with Docker installed and running, on a Windows 10 surface pro (with internet connection).
The line in question is:
RUN pip install http://ci.tensorflow.org/view/Nightly/job/nightly-pi-python3/122/artifact/output-artifacts/tensorflow-1.5.0-cp34-none-any.whl
My error is:
"Could not install packages due to an EnvironmentError: HTTPConnectionPool(host='ci.tensorflow.org', port=80): Max retries exceeded with url: /view/Nightly/job/nightly-pi-python3/122/artifact/output-artifacts/tensorflow-1.5.0-cp34-none-any.whl (Caused by ConnectTimeoutError(<pip._vendor.urllib3.connection.HTTPConnection object at 0xf5623830>, 'Connection to ci.tensorflow.org timed out. (connect timeout=15)'))"
Thank you in advance!
Regards,
Elliot Moule
In regards to my question, in case someone else comes across the same issue, I solved it by having my 'RUN pip3 install tensforflow' after my 'apt-gets' and requirements install.
This was with using the 'FROM resin/rpi-raspbian:stretch' as base. I also found, that to use the libboost python library, you need to use the newer 'libboost-python1.62.0'.
Hi,
Thank you for your fantastic GIT. I've been following along with your Azure and Custom Vision work, and am now trying to implement on my own Raspberry Pi 3.
When building the provided solution (with no changes), I ran into an issue with installing tensorflow, with broken connection errors (I'm guessing the link is no longer valid?). I was going to just update my own, though unsure whether a specific version is needed, so thought I should let you know, and hope you can help me :)
I am running the solution with VS Code, with Docker installed and running, on a Windows 10 surface pro (with internet connection).
The line in question is:
RUN pip install http://ci.tensorflow.org/view/Nightly/job/nightly-pi-python3/122/artifact/output-artifacts/tensorflow-1.5.0-cp34-none-any.whl
My error is:
"Could not install packages due to an EnvironmentError: HTTPConnectionPool(host='ci.tensorflow.org', port=80): Max retries exceeded with url: /view/Nightly/job/nightly-pi-python3/122/artifact/output-artifacts/tensorflow-1.5.0-cp34-none-any.whl (Caused by ConnectTimeoutError(<pip._vendor.urllib3.connection.HTTPConnection object at 0xf5623830>, 'Connection to ci.tensorflow.org timed out. (connect timeout=15)'))"
Thank you in advance!
Regards,
Elliot Moule