We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b54163c commit 10e684cCopy full SHA for 10e684c
docs/quirks.rst
@@ -15,7 +15,9 @@ that absolute path.
15
16
To work around this issue, you can mass rewrite the shebangs to
17
point the directory where the distribution is extracted/installed
18
-to.
+to. Here is a sample shell one-liner to get you started::
19
+
20
+ $ find install/bin/ -type f -exec sed -i '1 s/^#!.*python.*/#!.\/python3/' {} \;
21
22
Alternatively, you can sometimes execute ``python3 -m <module>``
23
to get equivalent functionality to what the installed script would
0 commit comments