当我执行 pyinstaller > 发生错误
when I excute pyinstaller > error happens
当我命令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
,您必须将其包含在同一字符串中。
当我命令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
,您必须将其包含在同一字符串中。