oracle / graalpython

A Python 3 implementation built on GraalVM
Other
1.2k stars 103 forks source link

GraalPy bundling instructions in blog post seem to be incorrect #339

Closed mikehearn closed 1 year ago

mikehearn commented 1 year ago

https://medium.com/graalvm/whats-new-in-graalvm-languages-161527df3d76

says to use this command

graalpy -m standalone binary - module my_script.py - output my_binary

but it seems the right command is actually the more expected form

graalpy -m standalone binary --module hello.py -o hello
msimacek commented 1 year ago

Thank you for noticing. It seems that the publishing tool converted every -- to -. Should be fixed now.