Add conda to README
This commit is contained in:
parent
76930056bf
commit
2d106de5e2
13
README.md
13
README.md
|
@ -9,7 +9,18 @@ _A logical, reasonably standardized, but flexible project structure for doing an
|
||||||
### Requirements to use the cookiecutter template:
|
### Requirements to use the cookiecutter template:
|
||||||
-----------
|
-----------
|
||||||
- Python 2.7 or 3.5
|
- Python 2.7 or 3.5
|
||||||
- [cookiecutter Python package](http://cookiecutter.readthedocs.org/en/latest/installation.html) >= 1.4.0: `pip install cookiecutter`
|
- [Cookiecutter Python package](http://cookiecutter.readthedocs.org/en/latest/installation.html) >= 1.4.0: This can be installed with pip by or conda depending on how you manage your Python packages:
|
||||||
|
|
||||||
|
``` bash
|
||||||
|
$ pip install cookiecutter
|
||||||
|
```
|
||||||
|
|
||||||
|
or
|
||||||
|
|
||||||
|
``` bash
|
||||||
|
$ conda config --add channels conda-forge
|
||||||
|
$ conda install cookiecutter
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
### To start a new project, run:
|
### To start a new project, run:
|
||||||
|
|
Loading…
Reference in New Issue