File tree Expand file tree Collapse file tree 2 files changed +20
-3
lines changed Expand file tree Collapse file tree 2 files changed +20
-3
lines changed Original file line number Diff line number Diff line change 19
19
# -- General configuration ---------------------------------------------------
20
20
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
21
21
22
- extensions = ["sphinx.ext.mathjax" ]
22
+ extensions = ["sphinx.ext.mathjax" , "sphinx_inline_tabs" ]
23
23
24
24
templates_path = ["_templates" ]
25
25
exclude_patterns = []
Original file line number Diff line number Diff line change @@ -66,10 +66,27 @@ release, run the following::
66
66
$ cd code-base-investigator
67
67
$ pip install .
68
68
69
- We strongly recommend installing CBI within a `virtual environment `_.
69
+ We strongly recommend installing CBI within a virtual environment, to simplify
70
+ dependency management and improve security. Some alternative methods of
71
+ creating a virtual environment are shown below.
70
72
71
- .. _ `virtual environment` : https://docs.python.org/3/library/ venv.html
73
+ .. tab :: venv
72
74
75
+ .. code-block :: text
76
+
77
+ $ git clone --branch 1.2.0 https://github.com/intel/code-base-investigator.git
78
+ $ python3 -m venv cbi
79
+ $ source cbi/bin/activate
80
+ $ cd code-base-investigator
81
+ $ pip install .
82
+
83
+ .. tab :: uv
84
+
85
+ .. code-block :: text
86
+
87
+ $ git clone --branch 1.2.0 https://github.com/intel/code-base-investigator.git
88
+ $ cd code-base-investigator
89
+ $ uv tool install .
73
90
74
91
Getting Started
75
92
###############
You can’t perform that action at this time.
0 commit comments