Skip to content

Commit 0af8da0

Browse files
committed
added copy
1 parent 64ab251 commit 0af8da0

File tree

3 files changed

+16
-11
lines changed

3 files changed

+16
-11
lines changed

.github/workflows/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
- uses: actions/setup-python@v2
99
- name: Install dependencies
1010
run: |
11-
pip install sphinx sphinx_rtd_theme
11+
pip install sphinx sphinx_rtd_theme sphinx-copybutton
1212
- name: Sphinx build
1313
run: |
1414
sphinx-build docs/source docs/_build

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# -- General configuration ---------------------------------------------------
2626
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
2727

28-
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.coverage', 'sphinx.ext.napoleon']
28+
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.coverage', 'sphinx.ext.napoleon','sphinx_copybutton']
2929

3030
templates_path = ['_templates']
3131
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']

docs/source/getting_started/installation.rst

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,12 @@ python dependencies
107107

108108
On jetson, you need the version for its CPU arch:
109109

110-
```bash
111-
wget https://nvidia.box.com/shared/static/p57jwntv436lfrd78inwl7iml6p13fzh.whl -O torch-1.8.0-cp36-cp36m-linux_aarch64.whl
112-
pip3 install Cython
113-
pip3 install numpy==1.19.5 torch-1.8.0-cp36-cp36m-linux_aarch64.whl
114-
```
110+
.. code-block:: bash
111+
112+
wget https://nvidia.box.com/shared/static/p57jwntv436lfrd78inwl7iml6p13fzh.whl -O torch-1.8.0-cp36-cp36m-linux_aarch64.whl
113+
pip3 install Cython
114+
pip3 install numpy==1.19.5 torch-1.8.0-cp36-cp36m-linux_aarch64.whl
115+
115116
116117
Also, you need to install cupy with
117118

@@ -144,21 +145,25 @@ If the Jetson is set up with Jetpack 4.5 with ROS Melodic the following package
144145
git clone [email protected]:ros/filters.git -b noetic-devel
145146
```
146147

147-
### Plane segmentation dependencies
148+
Plane segmentation dependencies
149+
=====================================
148150

149-
#### OpenCV
151+
OpenCV
152+
-------------------------------
150153

151154
```bash
152155
sudo apt install libopencv-dev
153156
```
154157

155-
#### Eigen
158+
Eigen
159+
-------------------------------
156160

157161
```bash
158162
sudo apt install libeigen3-dev
159163
```
160164

161-
#### CGAL
165+
CGAL
166+
-------------------------------
162167

163168
CGAL5 is required. It will be automatically downloaded and installed into the catkin workspace by the cgal5_catkin package. Make sure you
164169
have the third-party libaries installed on you machine:

0 commit comments

Comments
 (0)