You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/developer_guide.rst
+9-4Lines changed: 9 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,12 @@ Developer install with Mamba
6
6
7
7
First we need to install a Mamba distribution. There are a few options but here we opt for Miniforge3 as it includes Mamba.
8
8
9
+
Conda could be used instead of Mamba but Mamba is faster and more reliable. If you don't have permission to install Miniforge3 then you could try using Conda instead. For you could install mamba into conda with.
10
+
11
+
.. code-block:: sh
12
+
13
+
conda install -c conda-forge mamba -y
14
+
9
15
You can follow the install instructions for `Miniforge3 here <https://github.com/conda-forge/miniforge>`_ or follows the commands below.
10
16
Download
11
17
@@ -41,12 +47,11 @@ Activate the new environment
41
47
42
48
mamba activate new_env
43
49
44
-
We have aspirations to create a conda-forge package which will combine these final two steps, but for now FreeCAD and GEOUNED can be installed in two commands.
45
-
Install FreeCAD which is the main dependency
50
+
As our main dependency FreeCAD is not available on PYPi but we can install it from conda-forge.
46
51
47
52
.. code-block:: sh
48
53
49
-
mamba install -c conda-forge freecad
54
+
mamba install -c conda-forge freecad -y
50
55
51
56
Fork the GEOUNED-org/GEOUNED repository by clicking this link, unchecking the Copy the main branch only check box and clicking create fork
52
57
@@ -122,7 +127,7 @@ However we need one more dependency to run the tests.
122
127
123
128
.. code-block:: sh
124
129
125
-
mamba install -c conda-forge openmc
130
+
mamba install -c conda-forge openmc -y
126
131
127
132
Then we can run the tests with the following command from the root of the repository.
0 commit comments