@@ -57,27 +57,27 @@ To install these, execute the following commands:
57
57
58
58
> For macOS:
59
59
60
- 1 . ` brew install pipenv `
61
- 2 . ` brew install node `
60
+ 1 . ` brew install pipenv node `
62
61
63
62
> For GNU/Linux:
64
63
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 `
68
67
4 . ` sudo apt install npm `
69
68
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
74
74
75
75
76
76
### Installing Project Requirements
77
77
78
78
1 . Clone this repository.
79
79
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.
81
81
82
82
83
83
### pipenv Troubleshooting
@@ -86,7 +86,7 @@ To install these, execute the following commands:
86
86
message if the project’s virtual environment is broken] [ pipenverror ] ). If all
87
87
else fails, try removing the virtual environment and reinstalling:
88
88
1 . ` pipenv --rm `
89
- 2 . ` pipenv install `
89
+ 2 . ` pipenv install --dev `
90
90
91
91
[ pipenverror ] :https://github.com/pypa/pipenv/issues/1918
92
92
0 commit comments