From 5d7d2c401af16d129494344b0ad691d161928f0b Mon Sep 17 00:00:00 2001 From: TheBigBear Date: Tue, 26 Jul 2022 10:00:08 +0200 Subject: [PATCH 1/6] add minor windows install notes to README.rst --- README.rst | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 3046c32..45b1f38 100644 --- a/README.rst +++ b/README.rst @@ -75,9 +75,11 @@ Install from source cd saltenv # Setup venv - python3 -m venv .venv --prompt saltenv - source .venv/bin/activate - pip install -e . + | linux & macos | windows * | + |:--------------------------------------:|:--------------------------------------:| + | python3 -m venv .venv --prompt idemenv | python3 -m venv .venv --prompt idemenv | + | source .venv/bin/activate. | . .\.venv\Scripts\activate | + | pip install -e . | pip install -e . | Usage ===== From bc2caa9cd35b0129503a7a7cc5191d43ec52e41d Mon Sep 17 00:00:00 2001 From: TheBigBear Date: Tue, 26 Jul 2022 10:02:38 +0200 Subject: [PATCH 2/6] Update README.rst --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 45b1f38..87c953e 100644 --- a/README.rst +++ b/README.rst @@ -75,7 +75,7 @@ Install from source cd saltenv # Setup venv - | linux & macos | windows * | + | linux & macos | windows | |:--------------------------------------:|:--------------------------------------:| | python3 -m venv .venv --prompt idemenv | python3 -m venv .venv --prompt idemenv | | source .venv/bin/activate. | . .\.venv\Scripts\activate | From f1d3afe077ff9ecdc53d37cd10072ed40a55fb5f Mon Sep 17 00:00:00 2001 From: TheBigBear Date: Tue, 26 Jul 2022 10:04:02 +0200 Subject: [PATCH 3/6] Update README.rst --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 87c953e..b7fc384 100644 --- a/README.rst +++ b/README.rst @@ -78,7 +78,7 @@ Install from source | linux & macos | windows | |:--------------------------------------:|:--------------------------------------:| | python3 -m venv .venv --prompt idemenv | python3 -m venv .venv --prompt idemenv | - | source .venv/bin/activate. | . .\.venv\Scripts\activate | + | source .venv/bin/activate. | . .venv\Scripts\activate | | pip install -e . | pip install -e . | Usage From a391fcb46a0a4394c55ddd84eefc4ff7bc6eb3f6 Mon Sep 17 00:00:00 2001 From: TheBigBear Date: Tue, 26 Jul 2022 10:05:50 +0200 Subject: [PATCH 4/6] Update README.rst --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index b7fc384..18866bf 100644 --- a/README.rst +++ b/README.rst @@ -78,7 +78,7 @@ Install from source | linux & macos | windows | |:--------------------------------------:|:--------------------------------------:| | python3 -m venv .venv --prompt idemenv | python3 -m venv .venv --prompt idemenv | - | source .venv/bin/activate. | . .venv\Scripts\activate | + | source .venv/bin/activate | . .venv\Scripts\activate | | pip install -e . | pip install -e . | Usage From c1bd1254601c053b9bed15ae64a5f5abbc4cd3e9 Mon Sep 17 00:00:00 2001 From: TheBigBear Date: Wed, 27 Jul 2022 12:00:57 +0200 Subject: [PATCH 5/6] Update README.rst --- README.rst | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/README.rst b/README.rst index 18866bf..3879d6a 100644 --- a/README.rst +++ b/README.rst @@ -74,12 +74,18 @@ Install from source git clone git@github.com/eitrtechnologies/saltenv.git cd saltenv - # Setup venv - | linux & macos | windows | - |:--------------------------------------:|:--------------------------------------:| - | python3 -m venv .venv --prompt idemenv | python3 -m venv .venv --prompt idemenv | - | source .venv/bin/activate | . .venv\Scripts\activate | - | pip install -e . | pip install -e . | + # Setup venv (linux & macos) + python3 -m venv .venv --prompt idemenv + source .venv/bin/activate + pip install -e . + + # Setup venv (windows) + python3 -m venv .venv --prompt idemenv + . .venv\Scripts\activate + pip install -e . + + Note: Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools": + https://visualstudio.microsoft.com/visual-cpp-build-tools/ Usage ===== From 6d77486e1a8121a711ac34a16143dede32987a20 Mon Sep 17 00:00:00 2001 From: TheBigBear Date: Thu, 28 Jul 2022 09:36:18 +0200 Subject: [PATCH 6/6] Update README.rst --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 3879d6a..4042d1b 100644 --- a/README.rst +++ b/README.rst @@ -84,8 +84,8 @@ Install from source . .venv\Scripts\activate pip install -e . - Note: Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools": - https://visualstudio.microsoft.com/visual-cpp-build-tools/ + # Note: Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools": + # https://visualstudio.microsoft.com/visual-cpp-build-tools/ Usage =====