File tree Expand file tree Collapse file tree 2 files changed +26
-2
lines changed Expand file tree Collapse file tree 2 files changed +26
-2
lines changed Original file line number Diff line number Diff line change @@ -10,11 +10,25 @@ COMPAS friendly interface for Gmsh.
1010## Installation
1111
1212``` bash
13- conda create -n gmsh -c conda-forge compas
14- conda activate gmsh
1513pip install compas_gmsh
1614```
1715
16+ ### Linux
17+
18+ On linux, you may have to install gmsh and it's python bindings manually.
19+
20+ ``` bash
21+ conda create -n gmsh-dev gmsh python-gmsh -y
22+ conda activate gmsh-dev
23+ pip install compas_gmsh
24+ ```
25+
26+ Or use the environment file in this repo
27+
28+ ``` bash
29+ conda env create -f environment-linux.yml
30+ ```
31+
1832## Getting Started
1933
2034Have a look at some of the first [ examples in the documentation] ( https://compas.dev/compas_gmsh/latest/examples.html ) .
Original file line number Diff line number Diff line change 1+ name : gmsh-dev
2+ channels :
3+ - conda-forge
4+ dependencies :
5+ - python
6+ - pip
7+ - gmsh
8+ - python-gmsh
9+ - pip :
10+ - compas
You can’t perform that action at this time.
0 commit comments