Could not find a version that satisfies the requirement tensorflow
使用python
的pip
安装tensorflow
提示:
Could not find a version that satisfies the requirement tensorflow
后来发现,tensorflow
只支持64位的python
。
换成最新的64位python
后,发现还提示这个错误。
又发现tensorflow
只支持64位的python 3.6
。
最新的64位python 3.8
还不支持。。。
Could not find a version that satisfies the requirement cv2
直接执行安装命令:
pip install cv2
提示:
Could not find a version that satisfies the requirement cv2
原来cv2
根本不是一个python
软件的包名,cv2
只是opencv-python
这个python
软件包的一个组成部分。
换成:
pip install opencv-python
就好了