Skip to content

Commit ffb1bac

Browse files
README.md: use ready to paste terminal commands (#11629)
1 parent 98fc8aa commit ffb1bac

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,21 +78,21 @@ Quick start
7878

7979
Mypy can be installed using pip:
8080

81-
$ python3 -m pip install -U mypy
81+
python3 -m pip install -U mypy
8282

8383
If you want to run the latest version of the code, you can install from git:
8484

85-
$ python3 -m pip install -U git+git://github.com/python/mypy.git
85+
python3 -m pip install -U git+git://github.com/python/mypy.git
8686

8787

8888
Now you can type-check the [statically typed parts] of a program like this:
8989

90-
$ mypy PROGRAM
90+
mypy PROGRAM
9191

9292
You can always use the Python interpreter to run your statically typed
9393
programs, even if mypy reports type errors:
9494

95-
$ python3 PROGRAM
95+
python3 PROGRAM
9696

9797
You can also try mypy in an [online playground](https://mypy-play.net/) (developed by
9898
Yusuke Miyazaki).
@@ -162,7 +162,7 @@ mypy approximately 4 times faster than if interpreted!
162162

163163
To install an interpreted mypy instead, use:
164164

165-
$ python3 -m pip install --no-binary mypy -U mypy
165+
python3 -m pip install --no-binary mypy -U mypy
166166

167167
To use a compiled version of a development
168168
version of mypy, directly install a binary from

0 commit comments

Comments
 (0)