From 7ce3f378ddb5db8082b7435bd675f64b17efd6f5 Mon Sep 17 00:00:00 2001 From: Danny Dunlavy Date: Mon, 3 Feb 2025 06:33:16 -0700 Subject: [PATCH 1/2] Using standard python3 pip installer command --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 54708a6..e159028 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -22,13 +22,13 @@ current or filing a new [issue](https://github.com/sandialabs/pyttb/issues). Most changes only require dev options ```commandline - pip install -e ".[dev]" + python3 -m pip install -e ".[dev]" ``` But if you are making larger interface changes or updating tutorials/documentation you can also add the required packages for documentation. ```commandline - pip install -e ".[dev,doc]" + python3 -m pip install -e ".[dev,doc]" ``` 1. Checkout a branch and make your changes From 9685f8240b66da029817f546ba22113b506f9ddc Mon Sep 17 00:00:00 2001 From: Danny Dunlavy Date: Mon, 3 Feb 2025 08:48:08 -0700 Subject: [PATCH 2/2] python3 -> python for use on Windows --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e159028..be13b65 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -22,13 +22,13 @@ current or filing a new [issue](https://github.com/sandialabs/pyttb/issues). Most changes only require dev options ```commandline - python3 -m pip install -e ".[dev]" + python -m pip install -e ".[dev]" ``` But if you are making larger interface changes or updating tutorials/documentation you can also add the required packages for documentation. ```commandline - python3 -m pip install -e ".[dev,doc]" + python -m pip install -e ".[dev,doc]" ``` 1. Checkout a branch and make your changes