我已经创建了一个脚本,该脚本将在他的Facebook个人资料中为用户创建一个新帖子。在使用py2exe
之前它工作正常,但在创建.exe
文件后,它一直给我同样的错误。
代码:
import facebook, time
try:
token = input("Your Token: ")
text = input("The new post: ")
graph = facebook.GraphAPI(token)
fb_response = graph.put_wall_post(text)
except Exception as e:
print(e)
time.sleep(50)
错误:
[Errno 2] No such file or directory
注意:.pyc
(Python编译文件)工作正常,没有任何错误。只有.exe
文件才会出错。
答案 0 :(得分:0)
问题解决了。我刚刚使用PyInstaller
,它运行正常。不管怎样,