当我命令pyinstaller
制作这样的exe文件
pyinstaller --onefile --add-binary "chromedriver.exe";"." tweet.py
则错误发生。
PS C:selenium> pyinstaller --onefile --add-binary "chromedriver.exe";"." tweet.py
위치 줄:1 문자:59
+ pyinstaller --onefile --add-binary "chromedriver.exe";"." tweet.py
+ ~~~~~~~~
식 또는 문에서 예기치 않은 'tweet.py' 토큰입니다.
+ CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordException
+ FullyQualifiedErrorId : UnexpectedToken
我相信这应该能解决问题
pyinstaller --onefile --add-binary "chromedriver.exe;." tweet.py
;
被解析器视为令牌,因此它引发了错误UnexpectedToken
,您必须将其包含在同一字符串中。