Version: 2019.1
向 Unity Editor 添加模块
在没有 Hub 的情况下离线安装 Unity

从命令行安装 Unity

如果要在组织中自动部署 Unity,可以从命令行安装 Editor 和其他组件。这些组件是普通的安装程序可执行程序和软件包,可以给用来自动部署 Unity。

要下载组件,请使用 Unity 安装程序将 Unity 组件下载到计算机上的文件夹中。

  1. Download and run the installer. Release versions of the installer are available from the the Unity download archive. For Prerelease versions of the installer, see the Beta programs page. 2.在 Choose Components 中,选择要自动部署的所有组件。 3.在 Choose Download and Install locations 中,单击 Download to 单选按钮。 4.输入用于存储组件安装程序的位置。

  2. Finish the install.

导航到您指定的下载位置。在该文件夹中,您会找到所选组件的安装程序文件以及一个可以运行以安装组件的脚本文件(在 Windows 上为 install.bat,在 Linux 或 OS X 上为 install.sh)。

在 Windows 上下载的安装程序
在 Windows 上下载的安装程序

要使用下载的组件在另一台计算机上安装 Unity,请将文件夹的内容复制到目标计算机并执行安装脚本。

在 Windows 上从命令行安装各个 Unity 组件

从 Windows 上的命令行安装 Editor 和其他组件时,请使用以下选项。

注意:安装程序命令行参数区分大小写。

Unity Editor 安装

命令 详细信息
/S 执行静默(不提出问题)安装。
/D=PATH 设置默认安装目录。与静默安装选项结合使用时很有用。默认文件夹是 C:\Program Files (x86)\Unity(32 位)或 C:\Program Files\Unity(64 位)。

示例

UnitySetup64.exe /S /D=E:\Development\Unity

This example installs Unity silently to a E:\Development\Unity folder, which will be the root of the Unity installation. In this case, the Editor executable is installed in E:\Development\Unity\Editor\Unity.exe. The default install directory must be the last argument on the command line. The supplied path must not be surrounded by quotes, even if the path contains spaces.

Unity Editor 卸载

要执行静默卸载,请从命令行或脚本中运行 Uninstall.exe /S

Note: Although the process finishes right away, there is a delay before the files are actually removed. This is because the uninstaller is copied to a temporary location to enable it to remove itself. Make sure that the working directory is not inside the Unity install location. If it is, the uninstaller will be unable to remove the folder.

标准资源 (Standard Assets) 安装

要静默安装标准资源,请执行以下命令:

UnityStandardAssetsSetup.exe /S /D=E:\Development\Unity

注意:如果指定文件夹,请使用 Unity 根文件夹(即,包含 Editor 文件夹的文件夹,而不是安装 Unity.exe 的文件夹)。

示例项目安装

要静默安装示例项目,请使用:

UnityExampleProjectSetup.exe /S /D=E:\Development\Unity

注意:默认文件夹是 C:\Users\Public\Documentation\Unity Projects\Standard Assets Example Project

在 OS X 上从命令行安装 Unity

各 Unity 安装程序均以 .pkg 文件形式提供,可以使用 installer 命令来进行安装,如下所述。

Unity Editor 安装

要将 Editor 安装到指定目标卷上的 /Applications/Unity 文件夹中,请输入:

sudo installer [-dumplog] -package Unity.pkg -target /

标准资源 (Standard Assets) 安装

要将标准资源安装到指定卷上的 /Applications/Unity/Standard Assets 文件夹中,请输入:

sudo installer [-dumplog] -package StandardAssets.pkg -target /

示例项目安装

要将示例项目安装到指定卷上的 /Users/Shared/Unity/Standard-Assets 文件夹中,请输入:

sudo installer [-dumplog] -package Examples.pkg -target /

Torrent 下载

如果希望通过 BitTorrent 客户端下载 Unity,可从 Unity 下载存档页面获取 Torrent 链接。并非所有版本都支持 Torrent 下载。如果某个版本能以 torrent 方式下载,__Downloads__ 下拉菜单中将显示 Torrent download (Win+Mac) 选项。

使用 Torrent 来下载 Unity
使用 Torrent 来下载 Unity

一次安装多个版本

可以在同一台计算机上安装多个 Unity 版本。

在 Mac 上,安装程序创建一个名称为 Unity 的文件夹,并用此名称覆盖任何现有文件夹。要在 Mac 上安装多个版本的 Unity,请在安装其他版本之前重命名现有的 Unity 文件夹。

在 PC 上,将安装文件夹始终命名为 Unity X.Y.Z[fp]W__,其中 f__ 表示正式版,而 p 用于标记补丁版本。

强烈建议在重命名 Unity 文件夹时以合乎逻辑的命名方式指定新文件夹的名称(例如,将版本号添加到名称的末尾)。指向脱机文档的任何现有快捷方式、别名和链接可能不再指向旧版本的 Unity。这对脱机文档而言尤其令人困惑;如果突然发现脱机文档的浏览器书签不再有效,请检查书签是否在 URL 中具有正确的文件夹名称。


  • 2018–12–19 页面已修订并进行了编辑审查
  • 2018–06–12 页面已修订并进行了编辑审查
  • 在 Unity 2017.2 版中更新了安装建议
  • 在 Unity 2017.4 版中更新了安装建议
向 Unity Editor 添加模块
在没有 Hub 的情况下离线安装 Unity