davidcaron / pclpy

Python bindings for the Point Cloud Library (PCL)
MIT License
428 stars 59 forks source link

pcl for Colab #70

Open thomasjv799 opened 4 years ago

thomasjv799 commented 4 years ago

How to install this package on colab. So far its showing:

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

davidcaron commented 4 years ago

Does colab support installing packages from conda?

thomasjv799 commented 4 years ago

i think manually it si possible.I Used pip for windows as well as colab, this is the error i am getting.

Shanki5 commented 4 years ago

Unfortunately the pclpy is not available on pip. However you can install conda on colab and then use conda to install pclpy. https://towardsdatascience.com/conda-google-colab-75f7c867a522 , gives a clear idea on how to install conda on colab and then proceeds to explain how to install packages using the same.

geothan commented 3 years ago

Hello,

i'm trying to import pclpy in a google colab project, but i get:


ModuleNotFoundError Traceback (most recent call last)

in () ----> 1 import pcl ModuleNotFoundError: No module named 'pcl' ---------------------------------------------------------------------------- I tried the following in order to setup the conda environment: ! wget https://repo.anaconda.com/miniconda/Miniconda3-py38_4.9.2-Linux-x86_64.sh ! chmod +x Miniconda3-py38_4.9.2-Linux-x86_64.sh ! bash ./Miniconda3-py38_4.9.2-Linux-x86_64.sh -b -f -p /usr/local import sys _ = (sys.path .append("/usr/local/lib/python3.6/site-packages")) !conda install -c conda-forge -c davidcaron pclpy import pcl
SilviaMarino commented 1 year ago

Hello everyone, I'm having the same issue as @geothan, did you resolved it then? Is there any other way of using pclpy on colab?