Skip to content

Commit 55376a3

Browse files
committed
update install docs
1 parent a5e5a79 commit 55376a3

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -57,27 +57,27 @@ To install these, execute the following commands:
5757

5858
> For macOS:
5959
60-
1. `brew install pipenv`
61-
2. `brew install node`
60+
1. `brew install pipenv node`
6261

6362
> For GNU/Linux:
6463
65-
1. `curl https://raw.githubusercontent.com/kennethreitz/pipenv/master/get-pipenv.py | python`
66-
2. `sudo apt update`
67-
3. [Install Node.js](https://github.com/nodesource/distributions/blob/master/README.md#table-of-contents)
64+
1. [Installing Pipenv][pipenvinstall]
65+
2. [Install Node.js][nodeinstall]
66+
3. `sudo apt update`
6867
4. `sudo apt install npm `
6968

70-
[pipenvdocs]:https://pipenv.readthedocs.io/en/latest/
71-
[nodejswebsite]:https://nodejs.org/en/
72-
[npmdocs]:https://docs.npmjs.com/
73-
69+
[pipenvdocs]: https://pipenv.pypa.io/en/latest/
70+
[nodejswebsite]: https://nodejs.org/en/
71+
[npmdocs]: https://docs.npmjs.com/
72+
[pipenvinstall]: https://pipenv.pypa.io/en/latest/install/#installing-pipenv
73+
[nodeinstall]: https://github.com/nodesource/distributions/blob/master/README.md#table-of-contents
7474

7575

7676
### Installing Project Requirements
7777

7878
1. Clone this repository.
7979
2. Open your command line interface and `cd` to the repository root directory.
80-
3. Run `pipenv install` to create a Python virtual environment and install the requirements for this project.
80+
3. Run `pipenv install --dev` to create a Python virtual environment and install the requirements for this project.
8181

8282

8383
### pipenv Troubleshooting
@@ -86,7 +86,7 @@ To install these, execute the following commands:
8686
message if the project’s virtual environment is broken][pipenverror]). If all
8787
else fails, try removing the virtual environment and reinstalling:
8888
1. `pipenv --rm`
89-
2. `pipenv install`
89+
2. `pipenv install --dev`
9090

9191
[pipenverror]:https://github.com/pypa/pipenv/issues/1918
9292

0 commit comments

Comments
 (0)