使用whl离线安装open3d,报错
xxx.whl is not a supported wheel on this platform
显而易见是whl的版本没对,使用pip debug --verbose,会输出pip可以使用的whl版本。在官网上下载对应的版本,pip install xxx.whl即可。
顺便一提,网上说的,在python中执行类似下方的命令不是很适用,即使执行成功返回的结果也不是很直观。我执行时,会报错没有xx模块
import pip._internal print(pip._internal.pep425tags.get_supported())



