From d171223472fa05ddea078e47042cfa4ea249d424 Mon Sep 17 00:00:00 2001 From: Breno Poggiali de Sousa <40739397+brenopoggiali@users.noreply.github.com> Date: Thu, 12 Dec 2019 11:31:19 -0300 Subject: [PATCH] Update python-pcl installation with conda This change will help new users through a better understanding of the python-pcl installation with Anaconda providing better readability of each step and making the whole process easier. --- readme.rst | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/readme.rst b/readme.rst index 136b37935..b98327763 100644 --- a/readme.rst +++ b/readme.rst @@ -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 ===================