Closed RalphGuo closed 1 month ago
You are running on Windows, try wrapping your requirements args with single quotes like this.
dart run serious_python:main package app/src -p Android --requirements '-r,app/src/requirements.txt'
You are running on Windows, try wrapping your requirements args with single quotes like this.
dart run serious_python:main package app/src -p Android --requirements '-r,app/src/requirements.txt'
Thanks a lot! I changed your code like below in VSCode and it worked!
dart run serious_python:main package app/src -p Android --requirements '-rapp/src/requirements.txt' --verbose
there is no space between '-r' and 'app' for unknown reason, but it do work. :P
I'm going to package python libs using official code: but error occured as followed those Chinese word indicates :missing parameter in parameter list.
If I manually define the libs I need, it workd well.
What change can I make to package libs from requirements.txt?