From bf42f94021abb54b8a68911c96e6a8bb5e41e1bf Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Wed, 26 Jul 2017 10:34:57 -0700 Subject: [PATCH] Fixes to pip with git install instructions * use git+https:// in the example url because not everyone will have ssh keys registered on github * Remove the link to the github tarballs as they do not work. users can use releases.ansible.com instead. --- docs/docsite/rst/intro_installation.rst | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/docsite/rst/intro_installation.rst b/docs/docsite/rst/intro_installation.rst index 2052d9c5dd..b4d596c3f9 100644 --- a/docs/docsite/rst/intro_installation.rst +++ b/docs/docsite/rst/intro_installation.rst @@ -262,7 +262,7 @@ Then install Ansible with [1]_:: Or if you are looking for the latest development version:: - pip install git+git://github.com/ansible/ansible.git@devel + pip install git+https://github.com/ansible/ansible.git@devel If you are installing on OS X Mavericks, you may encounter some noise from your compiler. A workaround is to do the following:: @@ -277,8 +277,6 @@ Tarballs of Tagged Releases Packaging Ansible or wanting to build a local package yourself, but don't want to do a git checkout? Tarballs of releases are available on the `Ansible downloads `_ page. -These releases are also tagged in the `git repository `_ with the release version. - .. _from_source: Running From Source