Evan
Evan

Reputation: 2507

Python 3.7, pyinstaller: error: argument -d/--debug: invalid choice

I am trying to export my file, using pyinstaller in debugging mode. I am using python 3.7, and i encounter this error: enter image description here

need help.

Upvotes: 0

Views: 2705

Answers (1)

Candice
Candice

Reputation: 23

Run

pyinstaller --debug all Sci_cal.py 

instead.

See the link below: https://github.com/pyinstaller/pyinstaller/issues/3737

Upvotes: 1

Related Questions