@@ -9,24 +9,27 @@ The main code is Python with numerical calculations implemented efficiently in P
9
9
See the `CAMB python example notebook <https://camb.readthedocs.io/en/latest/CAMBdemo.html >`_ for an
10
10
introductory set of examples of how to use the CAMB package. This is usually the fastest way to learn how to use it
11
11
and quickly see some of the capabilities. There's also an `AI help assistant <https://cosmocoffee.info/help_assist.php >`_,
12
- with up-to-date knowledge of the full Python documentation.
12
+ with up-to-date knowledge of the full Python documentation,
13
+ and you can use with code execution in `CMB Agent <https://github.com/CMBAgents/cmbagent/> `.
13
14
14
15
There are also `technical notes <https://cosmologist.info/notes/CAMB.pdf >`_
15
16
and an `LLM context file <https://camb.readthedocs.io/en/latest/_static/camb_docs_combined.md >`_ that you can use in
16
- system prompts or as part documentation database.
17
+ system prompts or as part of a documentation database.
17
18
18
19
For a standard non-editable installation use::
19
20
20
21
pip install camb [--user]
21
22
22
23
The --user is optional and only required if you don't have write permission to your main python installation.
23
- If you want to work on the code from `GitHub <https://github.com/cmbant/camb >`_, you can also just install in place without copying anything using::
24
+
25
+ If you want to work on the code from `GitHub <https://github.com/cmbant/camb >`_, you can install using::
24
26
25
27
git clone --recursive https://github.com/cmbant/CAMB.git
26
28
pip install -e ./CAMB [--user]
27
29
28
- You will need ifort or gfortran 6 or higher installed (and on your path) to compile; see :ref: `fortran-compilers ` for
29
- compiler installation details if needed. If you have gfortran installed, "python setup.py make" will build
30
+ You will need ifort or gfortran 6 or higher installed (and on your path) to compile from source;
31
+ you can see :ref: `fortran-compilers ` for compiler installation details if needed.
32
+ If you have gfortran installed, "python setup.py make" will build
30
33
the Fortran library on all systems (including Windows without directly using a Makefile), and can be used to update
31
34
a source installation after changes or pulling an updated version.
32
35
0 commit comments