Skip to content

Commit 57583ad

Browse files
committed
add the --no-deps flag
1 parent 044a4ec commit 57583ad

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ For more instructions see the [Pull request checklist](#pull-request-checklist)
5959
conda activate CausalPy
6060
```
6161
62-
Install the package (in editable mode) and its development dependencies:
62+
Install the package (in editable mode) and its development dependencies. The `--no-deps` flag is used to avoid installing the dependencies of `CausalPy` as they are already installed when installing the development dependencies. This can end up interfering with the conda-only install of pymc.
6363
6464
```bash
65-
pip install -e .
65+
pip install -e . --no-deps
6666
```
6767
6868
Install development dependencies

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.PHONY: init lint check_lint test
22

33
init:
4-
python -m pip install -e .
4+
python -m pip install -e . --no-deps
55

66
lint:
77
ruff check --fix .

0 commit comments

Comments
 (0)