python3 subprocess.Popen 报错 No such file or directory

问题描述 

在当前目录中,当os.system("ls")查找文件时正确,命令subprocess.Popen(["wc -l filename"],stdout=subprocess.PIPE)不起作用。

代码如下:

>>> import os
>>> import subprocess
>>> os.system("ls")
sorted_list.dat
0
>>> p = subprocess.Popen(["wc -l sorted_list.dat"], stdout=subprocess.PIPE)
File"<stdin>", line 1, in <module>
File"/Users/a200/anaconda/lib/python2.7/subprocess.py", line 710, in __init__
    errread, errwrite)
File"/Users/a200/anaconda/lib/python2.7/subprocess.py", line 1335, in _execute_child
    raise child_exception
OSError: [Errno 2] No such file or directory

问题原因

发生此错误是因为您正在尝试运行名为wc -l sorted_list.dat的命令,也就是说,它正在尝试查找名为"/usr/bin/wc -l sorted dat"的文件

解决方法

您应该将参数作为列表传递(推荐):

subprocess.Popen(["wc","-l","sorted_list.dat"], stdout=subprocess.PIPE)

否则,如果要将整个"wc -l sorted_list.dat"字符串用作命令,则需要传递shell=True(不建议这样做,可能会导致安全隐患)。

subprocess.Popen("wc -l sorted_list.dat", shell=True, stdout=subprocess.PIPE)

 

 

 

相关文章

功能概要:(目前已实现功能)公共展示部分:1.网站首页展示...
大体上把Python中的数据类型分为如下几类: Number(数字) ...
开发之前第一步,就是构造整个的项目结构。这就好比作一幅画...
源码编译方式安装Apache首先下载Apache源码压缩包,地址为ht...
前面说完了此项目的创建及数据模型设计的过程。如果未看过,...
python中常用的写爬虫的库有urllib2、requests,对于大多数比...