Skip to content
This repository has been archived by the owner on Dec 30, 2023. It is now read-only.

Update python-pcl installation from conda #335

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 14 additions & 9 deletions readme.rst
Original file line number Diff line number Diff line change
Expand Up @@ -309,18 +309,23 @@ Common setting

.. code-block:: none

-> conda create -n ipk # create a new conda env.
-> conda activate ipk # activate env.
conda create -n env

-> conda update -n base -c defaults conda # update conda
conda activate env

-> conda config --add channels conda-forge # add conda-forge channels
-> conda install -c sirokujira python-pcl # pcl installation
-> conda install -c jithinpr2 gtk3 # Gtk+ Gui dependency
-> conda install -y ipython # install ipython
-> conda install -y jupyter # install jupyter
conda update -n base -c defaults conda

After that, run jupyter notebook or ipython shell to test pcl installation.
conda config --add channels conda-forge

conda install -c sirokujira python-pcl

conda install -c jithinpr2 gtk3

conda install -y ipython

conda install -y jupyter

After that, run ``jupyter notebook`` or ``ipython`` shell to test pcl installation.

Build & Test Status
===================
Expand Down