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/installation.md
+14-9Lines changed: 14 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,10 +6,10 @@ Calliope has been tested on Linux, macOS, and Windows.
6
6
7
7
Running Calliope requires four things:
8
8
9
-
1.The Python programming language, version {{ min_python_version }} to {{ max_python_version }}.
10
-
2.A number of Python add-on modules (see [below for the complete list](#python-module-requirements)).
11
-
3.A solver: Calliope has been tested with CBC, GLPK, Gurobi, and CPLEX. Any other solver that is compatible with Pyomo should also work.
12
-
4.The Calliope software itself.
9
+
1. The Python programming language, version {{ min_python_version }} to {{ max_python_version }}.
10
+
2. A number of Python add-on modules (see [below for the complete list](#python-module-requirements)).
11
+
3. A solver: Calliope has been tested with CBC, GLPK, Gurobi, and CPLEX. Any other solver that is compatible with Pyomo should also work.
12
+
4. The Calliope software itself.
13
13
14
14
## Recommended installation method
15
15
@@ -19,16 +19,20 @@ To get `mamba`, [download and install the "Mambaforge" distribution for your ope
19
19
20
20
With mamba installed, you can create a new environment called `calliope` with all the necessary modules, including the free and open source GLPK solver, by running the following command in a terminal or command-line window
The `conda-forge/label/calliope_dev` channel allows you to access the pre-release of Calliope v0.7, with which this version of the documentation aligns.
28
+
To install the most recent _stable_ version of Calliope, see our [v0.6.10 documentation](https://calliope.readthedocs.io/en/v0.6.10/).
29
+
26
30
This will install calliope with Python version {{ max_python_version }}.
27
31
28
32
To use Calliope, you need to activate the `calliope` environment each time
29
33
30
34
```bash
31
-
$ mamba activate calliope
35
+
mamba activate calliope
32
36
```
33
37
34
38
You are now ready to use Calliope together with the free and open source GLPK solver.
@@ -38,15 +42,16 @@ Read the next section for more information on installing alternative solvers.
38
42
39
43
!!! warning
40
44
41
-
Although possible, we do not recommend installing Calliope directly via `pip` (`pip install calliope`). Non-python binaries are not installed with `pip`, some of which are necessary for stable operation (e.g., `libnetcdf`).
45
+
Although possible, we do not recommend installing Calliope directly via `pip` (`pip install calliope`).
46
+
Non-python binaries are not installed with `pip`, some of which are necessary for stable operation (e.g., `libnetcdf`).
42
47
43
48
44
49
## Updating an existing installation
45
50
46
51
If following the recommended installation method above, the following command, assuming the mamba environment is active, will update Calliope to the newest version
0 commit comments