diff --git a/Setting-up-a-development-environment.md b/Setting-up-a-development-environment.md index 18bde52..373daff 100644 --- a/Setting-up-a-development-environment.md +++ b/Setting-up-a-development-environment.md @@ -7,10 +7,10 @@ You can run/develop TFW exercises locally with only utilizing **Docker** contain * git By default, your IDE will fail to autocomplete code and will complain about missing dependencies. To fix this you should install the `tfw` pip package in your dev virtualenv: -``` -SSH: +```bash +# SSH: pip install git+ssh://git@github.com/avatao-content/baseimage-tutorial-framework.git -HTTPS: +# HTTPS: pip install git+https://github.com/avatao-content/baseimage-tutorial-framework.git ```