Skip to content

Commit 25ce67f

Browse files
committed
typos
1 parent 01fb708 commit 25ce67f

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

docs/installation.rst

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Installation
55
Stable
66
======
77

8-
Stable releases of :mod:`compas_cgal` can be installed via ``conda-forge``.
8+
Stable releases of :mod:`compas_cgal` can be installed via `conda-forge`.
99

1010
.. code-block:: bash
1111
@@ -33,7 +33,7 @@ Or everything in one go
3333
Dev Install
3434
===========
3535

36-
A local development version can be set up using a combination of ``conda`` and ``pip``.
36+
A local development version can be set up using a combination of `conda` and `pip`.
3737
First, clone the :mod:`compas_cgal` repo.
3838

3939
.. code-block:: bash
@@ -74,7 +74,7 @@ Create an environment with all the required dependencies.
7474

7575
.. code-block:: bash
7676
77-
conda create -n cgal-dev python=3.8 mpir mpfr boost-cpp eigen=3.3 cgal-cpp=5.2 pybind11 compas compas_view2 --yes
77+
conda create -n cgal-dev python=3.8 mpfr gmp boost-cpp eigen=3.3 cgal-cpp=5.2 pybind11 compas compas_view2 --yes
7878
7979
.. raw:: html
8080

@@ -100,15 +100,15 @@ Change to the root folder of the :mod:`compas_cgal` repo.
100100
cd compas_cgal
101101
102102
103-
And compile the code while creating an editable install of the python wrapper using ``setuptools``.
103+
And compile the code while creating an editable install of the python wrapper using `setuptools`.
104104

105105
.. code-block:: bash
106106
107107
pip install -e .
108108
109109
110110
To add your c++ module to the wrapper, and potentially exclude some of the existing modules during its development,
111-
modify the list of extension modules in the ``setup.py`` file.
111+
modify the list of extension modules in the `setup.py` file.
112112

113113
.. code-block:: python
114114
@@ -123,6 +123,8 @@ modify the list of extension modules in the ``setup.py`` file.
123123
'src/slicer.cpp',
124124
'src/intersections.cpp',
125125
'src/measure.cpp',
126+
'src/triangulations.cpp',
127+
'src/subdivision.cpp',
126128
]),
127129
include_dirs=[
128130
'./include',

0 commit comments

Comments
 (0)