pclpy:适用于python的PCL,python 3.7的安装问题

时间:2019-07-09 09:48:09

标签: python pip package python-3.7

我尝试使用以下命令通过pypi安装软件包pclpy:

pip install pclpy 

但出现以下错误:

ERROR: Could not find a version that satisfies the requirement pclpy (from versions: none)
ERROR: No matching distribution found for pclpy

此问题仅在python 3.7+中出现, 使用较旧版本的python的环境没有问题。

有人知道即使在python 3.7中也如何使此程序包工作吗?

1 个答案:

答案 0 :(得分:0)

无法通过pypi使用python 3.7的pclpy,但您仍可以使用conda安装它:

conda install -c conda-forge -c davidcaron pclpy

根据official github page上的徽章,支持python 3.6-3.8。我刚刚使用python 3.7进行了测试(2020年7月9日)。

相关问题