Skip to content

Commit 7a7a666

Browse files
committed
Minor fixes to development instructions using conda
Signed-off-by: Adam Glustein <adam.glustein@point72.com>
1 parent b20dff2 commit 7a7a666

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ requirements: ## install python dev and runtime dependencies
1414
develop: requirements ## install dependencies and build library
1515
python -m pip install -e .[develop]
1616

17+
develop-conda: ## install just the local library when developing in conda
18+
CSP_USE_VCPKG=OFF pip install -U -e . --no-deps --no-build-isolation
19+
1720
build: ## build the library
1821
CSP_ENABLE_ASAN=$(ASAN) CSP_ENABLE_UBSAN=$(UBSAN) python setup.py build build_ext --inplace
1922

docs/wiki/dev-guides/Build-CSP-from-Source.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ micromamba activate csp
9696
make build-conda
9797

9898
# finally install into the csp conda environment
99-
make develop
99+
make develop-conda
100100
```
101101

102102
### A note about dependencies

0 commit comments

Comments
 (0)