Skip to content

Commit 6a48fb9

Browse files
authored
Fix git protocol for installing python-api (#262)
* Fix git protocol for installing python-api
1 parent 8877bef commit 6a48fb9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/installation.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Installing the Master Branch From Github
3737
========================================
3838
If you wish to install the current master, use the following command::
3939

40-
pip install git+git://github.com/shotgunsoftware/python-api.git
40+
pip install git+https://github.com/shotgunsoftware/python-api.git
4141

4242
.. note:: The master branch contains the latest revisions and while largely considered "stable" it
4343
is not an official packaged release.
@@ -47,14 +47,14 @@ Installing A specific Version From Github
4747
To install a specific version of the package from Github, run the following command. This example
4848
installs the v3.0.26 tag, replace the version tag with the one you want::
4949

50-
pip install git+git://github.com/shotgunsoftware/[email protected]
50+
pip install git+https://github.com/shotgunsoftware/[email protected]
5151

5252

5353
``requirements.txt``
5454
~~~~~~~~~~~~~~~~~~~~
5555
If you're using pip with `requirements.txt`, add the following line::
5656

57-
git+git://github.com/shotgunsoftware/python-api.git
57+
git+https://github.com/shotgunsoftware/python-api.git
5858

5959

6060
****************************

0 commit comments

Comments
 (0)