@@ -9,19 +9,27 @@ If installing on Windows, ensure `Microsoft Visual C++ <https://docs.microsoft.c
9
9
Pygraphviz
10
10
----------
11
11
12
- Pygraphviz can be installed through the conda-forge channel
13
-
14
- .. code-block :: console
12
+ Pygraphviz can be installed through the conda-forge channel::
15
13
16
14
conda install -c conda-forge pygraphviz
17
15
18
16
19
17
Alternatively, on Linux systems, this can be done with `sudo apt install graphviz libgraphviz-dev `.
20
18
19
+ Pip Install
20
+ -----------
21
+ To install the Causal Testing Framework using :code: `pip ` for the latest stable version::
22
+
23
+ pip install causal-testing-framework
24
+
25
+ To install with development packages/tools::
26
+
27
+ pip install causal-testing-framework[dev]
28
+
21
29
Install from source
22
30
-------------------
23
31
24
- In future it will be possible to install from PyPI, but for now ::
32
+ To install from source ::
25
33
26
34
git clone https://github.com/CITCOM-project/CausalTestingFramework
27
35
cd CausalTestingFramework
@@ -30,20 +38,20 @@ then, to install a specific release::
30
38
31
39
git fetch --all --tags --prune
32
40
git checkout tags/<tag> -b <branch>
33
- pip install -e .
41
+ pip install . # For core API only
42
+ pip install -e . # For editable install, useful for development work
34
43
35
44
e.g. version `1.0.0 `::
36
45
37
46
git fetch --all --tags --prune
38
47
git checkout tags/1.0.0 -b version
39
- pip install -e .
48
+ pip install .
40
49
41
50
or to install the latest development version::
42
51
43
- pip install -e .
52
+ pip install .
44
53
45
- Use ::
54
+ To also install developer tools ::
46
55
47
56
pip install -e .[dev]
48
57
49
- to also install developer tools.
0 commit comments