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文件
- wheel命令
whl文件也是压缩文件,可以使用wheel命令解压缩
wheel unpack test.whl
- 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文件)
版权声明:本文标题:macos 打开多种压缩文件(tar,zip,whl文件) 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/biancheng/1705349854a645273.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论