Skip to content

Commit d1d4d5c

Browse files
shimwellpsauvan
authored andcommitted
Adding y to install (#207)
* moved two methods out of start * removed unnecessary logger line * changes while working therough the install
1 parent 2f3f547 commit d1d4d5c

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

docs/developer_guide.rst

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ Developer install with Mamba
66

77
First we need to install a Mamba distribution. There are a few options but here we opt for Miniforge3 as it includes Mamba.
88

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+
915
You can follow the install instructions for `Miniforge3 here <https://github.com/conda-forge/miniforge>`_ or follows the commands below.
1016
Download
1117

@@ -41,12 +47,11 @@ Activate the new environment
4147
4248
mamba activate new_env
4349
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.
4651

4752
.. code-block:: sh
4853
49-
mamba install -c conda-forge freecad
54+
mamba install -c conda-forge freecad -y
5055
5156
Fork the GEOUNED-org/GEOUNED repository by clicking this link, unchecking the Copy the main branch only check box and clicking create fork
5257

@@ -122,7 +127,7 @@ However we need one more dependency to run the tests.
122127

123128
.. code-block:: sh
124129
125-
mamba install -c conda-forge openmc
130+
mamba install -c conda-forge openmc -y
126131
127132
Then we can run the tests with the following command from the root of the repository.
128133

docs/install/install_linux.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Install GEOUNED from conda-forge
4545

4646
.. code-block:: sh
4747
48-
mamba install -c conda-forge geouned
48+
mamba install -c conda-forge geouned -y
4949
5050
Then you will be able to run import GEOUNED from within Python
5151

@@ -103,7 +103,7 @@ Install GEOUNED from conda-forge
103103

104104
.. code-block:: sh
105105
106-
conda install -c conda-forge geouned
106+
conda install -c conda-forge geouned -y
107107
108108
Then you will be able to run import GEOUNED from within Python
109109

docs/install/install_windows.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Install GEOUNED from conda-forge
3535

3636
.. code-block:: sh
3737
38-
mamba install -c conda-forge geouned
38+
mamba install -c conda-forge geouned -y
3939
4040
Then you will be able to run import GEOUNED from within Python
4141

@@ -80,7 +80,7 @@ Install GEOUNED from conda-forge
8080

8181
.. code-block:: sh
8282
83-
conda install -c conda-forge geouned
83+
conda install -c conda-forge geouned -y
8484
8585
Then you will be able to run import GEOUNED from within Python
8686

0 commit comments

Comments
 (0)