为什么我无法在Windows 10计算机上执行此Pytho子进程命令?

问题描述 投票:0回答:1

我对Python尚不了解,但存在以下问题(我正在研究适用于安全性的Python课程)。>>

在我的Windows 10计算机上,安装了Python 2.7.17

版本。

然后我有这个非常简单的脚本:

#!/usr/env/bin python

import subprocess

command = "msg you have been hacked !!!"

# Popen() continue the program and doesn't wait that the command is completly finished to terminate the script execution:
subprocess.Popen(command, shell=True)

问题是,当我尝试执行它时,出现此错误:

C:\Users\myuser\Desktop\python_evil>python execute_command.py

C:\Users\myuser\Desktop\python_evil>you inesistente o disconnesso

该错误对我来说似乎很奇怪(它是英语(您)的一半,意大利语的一半)。基本上它说:您不存在或被拒绝

为什么?怎么了?我想念什么?如何解决此问题并正确执行此命令?

我对Python尚不了解,但存在以下问题(我正在研究适用于安全性的Python课程)。在我的Windows 10计算机上安装了Python 2.7.17版本。然后我有...

python python-2.7 subprocess
1个回答
0
投票

该错误对我来说似乎很奇怪(它是英语(您)的一半,意大利语的一半)。基本上说:您不存在或不被接受

© www.soinside.com 2019 - 2024. All rights reserved.