我试过
%%sh
tar xvf filename.tar.gz
但它没有用。 如何在IPython中阅读tar.gz文件。
答案 0 :(得分:0)
我无法理解你为什么要用Python(特别是使用IPython)来做这件事,但是没关系......
要使用Python将命令放入系统,我将使用子进程:
from subprocess import call
# The first param must be the command, and then the options,
# Something like
call(["tar", "-xzf", "filename.tar.gz"])
这不仅适用于Ipython,也适用于每个Python程序。