当我执行pyinstaller时>发生错误



当我命令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,您必须将其包含在同一字符串中。

相关内容

  • 没有找到相关文章

最新更新