diff --git a/README.rst b/README.rst index ce7d601..aeb592d 100644 --- a/README.rst +++ b/README.rst @@ -74,11 +74,19 @@ Install from source git clone git@github.com/eitrtechnologies/idemenv.git cd idemenv - # Setup venv + # 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 ===== @@ -172,9 +180,8 @@ Basic idem binary setup: # Kick the tires! - $ idem exec test.version - local: - 3004 + $ idem exec test.ping + True Common Issues