今天在Windows下通过Pycharm安装Tensorflow时遇到两个问题: 使用pip安装其实原理都相同,只不过Pycharm是图形化的过程! 1.由于使用国外源总是导致Timeout 解决方法是在Pycharm中添加清华源 https://mirrors.aliyun.com/pypi/simple/(或者其他的国内源) 2.替换成清华源后安装报错: ERROR: Could not find a version that satisfies the requirement tensor…
引言: Tensorflow大名鼎鼎,这里不再赘述其为何物.这里讲描述在安装python包的时候碰到的“No matching distribution found for tensorflow”,其原因以及如何解决. 简单的安装tensorflow这里安装的tensorflow的cpu版本,gpu版本可以自行搜索安装指南,或者参考如下指令: pip3 install tensorflow #cpu 这里使用的python 3.6.3版本. pip3 install tensorflow-gpu…
出现多次使用pip安装包时提示以下报错: ERROR: Could not find a version that satisfies the requirement <package> (from versions: none)ERROR: No matching distribution found for <package> 看提示信息说是木有匹配的包版本,那既然这样就制定安装的Python的三方包的版本,但是也不行,那说明可能不是包版本问题. 网上查了下说有可能是网络问题,…
python3安装PIL提示如下错误,安装指令是pip3 install PIL,这个是因为PIL(Python Imaging Library)是Python中一个强大的图像处理库,但目前其只支持到Python2.7. pillow是PIL的一个分支,虽是分支但是其与PIL同样也具有很强的图像处理库. Could not find a version that satisfies the requirement pil (from versions: ) No matching distrib…
今天ytkah在安装python3组件时提示如下错误,这个是缺少依赖的问题,就试着用pip3 install dateutil,但还是提示同样的错误,怎么处理呢? Could not find a version that satisfies the requirement dateutil (from versions: ) No matching distribution found for dateutil 在https://pypi.org/project/python-dateutil…
今天使用pip安装pymysql时出现如下错误: Could not find a version that satisfies the requirement cryptography (from pymysql) (from versions: )No matching distribution found for cryptography (from pymysql) 使用pip安装其他模块时也可能出现上述错误,主要原因是网络的问题,需要使用国内的镜像源来加速,比如豆瓣源 因此命令可以使用…
一.首先安装pycharm,可以参考这篇文章:http://www.jianshu.com/p/042324342bf4 1.win10_X64,其他Win版本也可以. 2.PyCharm版本:Professional-2016.2.3. 1.到PyCharm官网下载PyCharm安装包.   Download   Download 2.选择Windows系统的专业版下载.   下载   下载 3.下载好的安装包. 安装包信息 安装包信息 1.双击安装包进行安装.   安装软件   安装软件 2…
一.首先安装pycharm,可以参考这篇文章:http://www.jianshu.com/p/042324342bf4 搭建环境 1.win10_X64,其他Win版本也可以.2.PyCharm版本:Professional-2016.2.3. 搭建准备 1.到PyCharm官网下载PyCharm安装包. Download 2.选择Windows系统的专业版下载. 下载 3.下载好的安装包. 安装包信息 安装软件 1.双击安装包进行安装. 安装软件 2.自定义软件安装路径(建议路径中不要中文字…
Tensorflow 需要 Python 3.5/3.6  64bit 版本: 具体的安装方式可查看:https://www.tensorflow.org/install/install_windows 命令提示符中输入 python 即可启动并查看当前版本: 查看具体的版本信息可输入: python -v 下载新的64bit 的 Python 版本进行安装即可. Windows  Python3.6.5 64bit 下载地址:https://www.python.org/ftp/python/…
使用pip安装pymysql出错;Could not find a version that satisfies the requirement cryptography (from pymysql) (from versions: ) No matching distribution found for cryptography (from pymysql) 今天使用pip安装pymysql时出现如下错误: Could not find a version that satisfies the…