We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19db169 commit 390fa6cCopy full SHA for 390fa6c
igor.py
@@ -446,10 +446,10 @@ def do_cheats():
446
447
print("\n## To run this code:")
448
if facts.branch == "master":
449
- print(f"pip install git+{github}#{egg}")
+ print(f"python3 -m pip install git+{github}#{egg}")
450
else:
451
- print(f"pip install git+{github}@{facts.branch}#{egg}")
452
- print(f"pip install git+{github}@{facts.sha}#{egg}")
+ print(f"python3 -m pip install git+{github}@{facts.branch}#{egg}")
+ print(f"python3 -m pip install git+{github}@{facts.sha[:20]}#{egg}")
453
454
print(
455
"\n## For other collaborators:\n"
0 commit comments