2019-01-08

安装tensorflow趟过的坑 1.python不要安装3.7版本,我安装的是python3.5.2;
2.anaconda版本要与python版本对应上,不然tensorflow安装不了,python3.5.2对应anaconda4.2.0;
3.针对“Read time out”问题,可以这样安装pip --default-timeout=100 install -U tensorflow;
【2019-01-08】4.针对“Could not install packages due to an EnvironmentError: [WinError 5] 拒绝访问”问题,可以在install后面加上--user,即pip --default-timeout=100 install --user -U tensorflow

    推荐阅读