79

我尝试通过 CMD 解压缩文件。

所以我安装了 WinZip(及其 cmd 插件)、WinRAR 和 7-zip。

但是当我尝试通过 CMD执行命令时:

7z e myzip.zip

它给出了下一个错误:

7z is not recognized as an internal or external command

另外我把7-z的文件夹加到环境变量中(属性-->高级-->环境变量-->用户变量-->选择路径,添加C:\Program Files\7-Zip

可能是什么原因?

I find the below solution for this.

在 cmd 或 git bash 中压缩时 - 出现类似错误

 7z:command not found 

解决方案:

  • 在你的机器上安装 7z
  • 在环境变量-> 用户变量中设置路径
    • 路径 -> 编辑 -> 新建(添加路径 - C:\ProgramFiles\7-Zip) -> 确定

现在在 git bash 中使用 7z -

  • 转到 C:\Program Files\7-Zip 并复制 7z.exe 文件
  • 转到 C:\Program Files\Git\usr\bin 并粘贴 7z.exe 文件

现在,您将能够在 Git Bash 中使用 7z

4

4 回答 4

123

在命令提示符下执行以下操作对我有用,同时添加到我的用户环境变量也可以正常工作:

set PATH=%PATH%;C:\Program Files\7-Zip\
echo %PATH%
7z

您应该看到输出(或类似的东西 - 因为这是在我运行 Windows 7 的笔记本电脑上):

C:\Users\Phillip>set PATH=%PATH%;C:\Program Files\7-Zip\

C:\Users\Phillip>echo %PATH%
C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Wi
ndows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\
WirelessCommon\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\To
ols\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Fil
es (x86)\QuickTime\QTSystem\;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Notepad+
+;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files\7-Zip\

C:\Users\Phillip>7z

7-Zip [64] 9.20  Copyright (c) 1999-2010 Igor Pavlov  2010-11-18

Usage: 7z <command> [<switches>...] <archive_name> [<file_names>...]
       [<@listfiles...>]

<Commands>
  a: Add files to archive
  b: Benchmark
  d: Delete files from archive
  e: Extract files from archive (without using directory names)
  l: List contents of archive
  t: Test integrity of archive
  u: Update files to archive
  x: eXtract files with full paths
<Switches>
  -ai[r[-|0]]{@listfile|!wildcard}: Include archives
  -ax[r[-|0]]{@listfile|!wildcard}: eXclude archives
  -bd: Disable percentage indicator
  -i[r[-|0]]{@listfile|!wildcard}: Include filenames
  -m{Parameters}: set compression Method
  -o{Directory}: set Output directory
  -p{Password}: set Password
  -r[-|0]: Recurse subdirectories
  -scs{UTF-8 | WIN | DOS}: set charset for list files
  -sfx[{name}]: Create SFX archive
  -si[{name}]: read data from stdin
  -slt: show technical information for l (List) command
  -so: write data to stdout
  -ssc[-]: set sensitive case mode
  -ssw: compress shared files
  -t{Type}: Set type of archive
  -u[-][p#][q#][r#][x#][y#][z#][!newArchiveName]: Update options
  -v{Size}[b|k|m|g]: Create volumes
  -w[{path}]: assign Work directory. Empty path means a temporary directory
  -x[r[-|0]]]{@listfile|!wildcard}: eXclude filenames
  -y: assume Yes on all queries
于 2013-01-02T13:19:12.773 回答
8

关于菲尔街的帖子:

如果您运行的是 64 位操作系统,它实际上可能安装在您的 32 位程序文件夹中,而不是默认的 x64 文件夹中。检查7-zip安装位置,如果在,请Program Files (x86)尝试使用它:

PATH=%PATH%;C:\Program Files (x86)\7-Zip
于 2013-08-13T22:23:04.247 回答
1

确保您的路径指向 C:\Program Files\7-Zip 中的 .exe 文件(可能在 bin 目录中)

于 2013-01-02T13:18:08.953 回答
0

在 Windows 10 中,我必须以管理员身份运行批处理文件。

于 2017-04-13T19:33:09.447 回答