Ghislain Moreau
Ghislain Moreau

Reputation: 43

pclpy: PCL for python, installation issue with python 3.7

I try to install the package pclpy through pypi with the following command:

pip install pclpy 

but I get the following error:

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

This issue appears only with python 3.7+, I have no problem with environments using an older version of python.

Does anyone have an idea of how to have this package working even with python 3.7?

Upvotes: 1

Views: 4698

Answers (1)

Mark Loyman
Mark Loyman

Reputation: 2180

pclpy for python 3.7 isn't available via pypi, but you can still install it with conda:

conda install -c conda-forge -c davidcaron pclpy

According to badges on the official github page, python 3.6-3.8 are supported. I just tested with python 3.7 (July 09, 2020).

Upvotes: 1

Related Questions