admin管理员组

文章数量:1122850

macos 打开多种压缩文件(tar,zip,whl文件)

tar文件

mac自带有打开压缩包命令tar,我们打开terminal,键入man tar查看该命令方法。在DESCRIPTION那栏能够看到该命令解释,他能打开或者压缩多种文件,例如zip,7z,tar等后缀文件。

DESCRIPTIONtar creates and manipulates streaming archive files.  This implementation can extract from tar, pax, cpio, zip, jar, ar, xar, rpm, 7-zip, and ISO 9660 cdrom images and can create tar, pax, cpio, ar, zip, 7-zip, and shar archives.

故若我们想打开tar压缩文件可以在terminal中定位到该文件,然后输入如下操作便可。

# compress
tar -cvf test.tar test # tar -cvf [target file.tar] [source file]# extract
tar -xvf test.tar	

命令参数的详细翻译可以参看.html

zip文件

zip,7z文件的解压缩同理

# compress
zip test.zip test# extract
unzip test.zip

whl文件

  1. wheel命令

whl文件也是压缩文件,可以使用wheel命令解压缩

wheel unpack test.whl
  1. python

当然往往我们的情况是需要安装.whl文件,在这个时候我们需要使用到python的库wheel,安装该库后再安装.whl文件,如下:

# install wheel
pip intall wheelpip install torch-1.2.0-cp36-none-macosx_10_7_x86_64.whl	# pip [source file]

之后你便可以在你的pip list中找到该文件

本文标签: macos 打开多种压缩文件(tarZipwhl文件)