File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -245,27 +245,27 @@ a specific version of ``requests``:
245245
246246 .. code-block :: bash
247247
248- python3 -m pip install requests==2.18.4
248+ python3 -m pip install ' requests==2.18.4'
249249
250250 .. tab :: Windows
251251
252252 .. code-block :: bat
253253
254- py -m pip install requests== 2.18.4
254+ py -m pip install " requests==2.18.4"
255255
256256 To install the latest ``2.x `` release of requests:
257257
258258.. tab :: Unix/macOS
259259
260260 .. code-block :: bash
261261
262- python3 -m pip install requests> =2.0.0,< 3.0.0
262+ python3 -m pip install ' requests>=2.0.0,<3.0.0'
263263
264264 .. tab :: Windows
265265
266266 .. code-block :: bat
267267
268- py -m pip install requests> =2.0.0,< 3.0.0
268+ py -m pip install " requests>=2.0.0,<3.0.0"
269269
270270 To install pre-release versions of packages, use the ``--pre `` flag:
271271
You can’t perform that action at this time.
0 commit comments