Added an example to README.md for installing from git

This commit is contained in:
Jeremy Spencer
2018-08-03 11:14:58 -04:00
parent 354bfca17b
commit 9070a6b92d
2 changed files with 10 additions and 0 deletions
+9
View File
@@ -216,6 +216,15 @@ Install packages:
To activate this project's virtualenv, run the following:
$ pipenv shell
Install from git:
$ pipenv install -e git+https://github.com/requests/requests.git@v2.19.1#egg=requests
Installing -e git+https://github.com/requests/requests.git@v2.19.1#egg=requests…
...
Adding -e git+https://github.com/requests/requests.git@v2.19.1#egg=requests to Pipfile's [packages]...
You can also change the tag/ref (or exclude to get the latest version) by adding @version-or-tag before #egg=project_name
Install a dev dependency:
$ pipenv install pytest --dev
+1
View File
@@ -0,0 +1 @@
Added simple example to README.md for installing from git.