Adding conda to get Cookiecutter

This commit is contained in:
Richaldo Elias 2019-10-05 00:41:01 +02:00 committed by GitHub
parent 99ccd314d0
commit aa84be2f78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -132,8 +132,15 @@ Let's pretend you want to create a Django project called "redditclone". Rather t
and then editing the results to include your name, email, and various configuration issues that always get forgotten until the worst possible moment, get cookiecutter_ to do all the work. and then editing the results to include your name, email, and various configuration issues that always get forgotten until the worst possible moment, get cookiecutter_ to do all the work.
First, get Cookiecutter. Trust me, it's awesome:: First, get Cookiecutter. Trust me, it's awesome::
There are to ways get Cookiecutter:
Using pip
$ pip install "cookiecutter>=1.4.0" $ pip install "cookiecutter>=1.4.0"
Using conda
$ conda install -c cmckeague cookiecutter
Now run it against this repo:: Now run it against this repo::