一、直接安装
命令:pip install tensorflow==1.15.2
二、换 阿里云 镜像源
命令:pip install -i http://mirrors.aliyun.com/pypi/simple tensorflow==1.15.2
三、换 豆瓣 镜像源
命令:pip install http://p服务器托管网ypi.douban.com/simple tensorflow==1.15.2
错误:
ERROR: Cannot unpack file C:UsersAdministratorAppDataLocalTemppip-unpack-4y1t7wu2simple (downloaded from C:UsersAdministratorAppDataLocalTemppip-req-build-ks2gek_b, content-type: text/html; charset=utf-8); cannot detect archive forma
t
ERROR: Cannot determine archive format of C:UsersAdministratorAppDataLocalTemppip-req-build-ks2gek_b
四、换 中国科学技术大学 镜像源
命令:pip install http://pypi.mirrors.ustc.edu.cn/simple/ tensorflow==1.15.2
ERROR: Cannot unpack file C:UsersAdministratorAppDataLocalTemppip-unpack-s6qfhuowsimple.htm (downloaded from C:UsersAdministratorAppDataLocalTemppip-req-build-o8_q5nl6, content-type: text/html); cannot detect archive format
ERROR: Cannot determine archive format of C:UsersAdministratorAppDataLocalTemppip-req-build-o8_q5nl6
解决:使用如下命令即可解决
pip install tensorflow==1.15.2 -i https://pypi.douban.com/simple --trust -host=pypi.douban.com
成功解决:
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
1 概述 C++程序在执行是,将内存大致分为4个区域: 代码区:用于存放二进制代码,由操作系统进行管理 全局区:存放全局变量和静态变量及常量 栈区:由编译器自动分配释放,存放函数的参数、局部变量等 堆区:程序员分配,如果程序员不释放,程序结束后由操作系统回收 …