AllenDowney / ThinkPython2

LaTeX source and supporting code for Think Python, 2nd edition, by Allen Downey.
Other
2.49k stars 1.65k forks source link

Adding a note for more clarity #88

Closed nouraellm closed 2 years ago

nouraellm commented 2 years ago

If md5sha1sum is not installed the following error will be thrown:

/bin/sh: md5sum: command not found Traceback (most recent call last): File "test.py", line 118, in d = compute_checksums(dirname='.', suffix='.py') File "test.py", line 77, in compute_checksums res, stat = compute_checksum(name) File "test.py", line 37, in compute_checksum return pipe(cmd) File "test.py", line 62, in pipe assert stat is None AssertionError

The solution is to install it on the operating system

AllenDowney commented 2 years ago

Thanks!