From a2216bed2e9625d339da984244a38a60b89fc23b Mon Sep 17 00:00:00 2001 From: TheBigBear Date: Tue, 26 Jul 2022 09:54:03 +0200 Subject: [PATCH 1/5] Update README.rst --- README.rst | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index ce7d601..85f087d 100644 --- a/README.rst +++ b/README.rst @@ -75,9 +75,14 @@ Install from source cd idemenv # Setup venv - python3 -m venv .venv --prompt idemenv - 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 . | + + * 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 7b97fa9bbc3ac3cbed7dd7a7be4fdb72e16a4582 Mon Sep 17 00:00:00 2001 From: TheBigBear Date: Tue, 26 Jul 2022 10:04:42 +0200 Subject: [PATCH 2/5] Update README.rst --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 85f087d..b75ae54 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 . | * Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools": From 7a6f63a29b5e149511574179bfef8d86891da02f Mon Sep 17 00:00:00 2001 From: TheBigBear Date: Tue, 26 Jul 2022 10:05:28 +0200 Subject: [PATCH 3/5] Update README.rst --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index b75ae54..1dc5f45 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 . | * Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools": From 14e91eadc7885f0776fb7b4e4638c8657a6e92ea Mon Sep 17 00:00:00 2001 From: TheBigBear Date: Wed, 27 Jul 2022 11:43:52 +0200 Subject: [PATCH 4/5] Update README.rst --- README.rst | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/README.rst b/README.rst index 1dc5f45..ce7e29f 100644 --- a/README.rst +++ b/README.rst @@ -74,14 +74,17 @@ Install from source git clone git@github.com/eitrtechnologies/idemenv.git cd idemenv - # 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 . - * Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ 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 @@ -177,9 +180,8 @@ Basic idem binary setup: # Kick the tires! - $ idem exec test.version - local: - 3004 + $ idem exec test.ping + True Common Issues From 80643840ad1d7562988b2b779aa132f542292058 Mon Sep 17 00:00:00 2001 From: TheBigBear Date: Thu, 28 Jul 2022 09:38:28 +0200 Subject: [PATCH 5/5] Update README.rst --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index ce7e29f..aeb592d 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 =====