文章目录
- 问题,持续更新
-
- 调试就是:见招拆招
-
-
-
- 1.Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
- 2.ImportError: cannot import name cloud
- 3.FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated
- 4.TabError: inconsistent use of tabs and spaces in indentation
- 5.scipy安装错误及解决(libraries mkl_rt not found)
- 6.DEPRECATION: The default format will switch to columns in the future. You can use –format=(legacy|columns) (or define a format=(legacy|columns) in your pip.conf under the [list] section) to disable this warning.
- 7.pip安装包时,解决Cannot unpack file问题
- 8. Building wheel for opencv-python (PEP 517) ... /
- 9.aarch64架构安装Anaconda3出现错误:cannot execute binary file: Exec format error
- 10.import cv2 or import numpy as np -> illegal instruction (core dumped)
- 11. python ModuleNotFoundError: No module named '_sqlite3'
- 12. /usr/lib/aarch64-linux-gnu/libstdc++.so.6:version `GLIBCXX_3.4.11' not found 解决办法
-
-
问题,持续更新
调试就是:见招拆招
1.Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
原因:未知,pip直接安装找不到安装包
解决方法一:下载离线安装包whl
解决方法二:有的除了上面的明显错误提示,还是提示不信任的提示(因为一般下载会指定源),注意-host后的等号,不加也不行
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted -host=pypi.tuna.tsinghua.edu.cn tensorflow
ps:
1.网上有提到这个解决方法,用非mac平台的设备的朋友注意了,这个是mac平台的