Skip to content

Commit

Permalink
Fix development install instructions (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsewell committed Feb 15, 2020
1 parent 1ec0177 commit 0e93463
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,16 @@ An extended commonmark compliant parser, with bridges to docutils & sphinx.
## Usage

```console
pip install -e git+https://github.com/ExecutableBookProject/myst_parser.git#egg=myst_parser[sphinx,code_style,testing]
pip install -e git+https://github.com/ExecutableBookProject/myst_parser.git#egg=myst_parser[sphinx]
```

Or for package development:

```bash
git clone https://github.com/ExecutableBookProject/myst_parser
cd myst_parser
git checkout develop
pip install -e .[sphinx,code_style,testing,rtd]
```

Note, this parser currently requires the [ExecutableBookProject/mistletoe](https://github.com/ExecutableBookProject/mistletoe)
Expand Down
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ pip install -e "git+https://github.com/ExecutableBookProject/myst_parser.git#egg
Or for package development:

```bash
git clone https://github.com/chrisjsewell/mistletoe
cd mistletoe
git checkout myst
git clone https://github.com/ExecutableBookProject/myst_parser
cd myst_parser
git checkout develop
pip install -e .[sphinx,code_style,testing,rtd]
```

Expand Down

0 comments on commit 0e93463

Please sign in to comment.