HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

xcodes runtimes — Manage Xcode Simulator runtimes. More information: <https://github.com/xcodesorg/xcodes#commands>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandsimulatorruntimesclimanagexcodes runtimesxcodemore
macos

Problem

How to use the xcodes runtimes command: Manage Xcode Simulator runtimes. More information: <https://github.com/xcodesorg/xcodes#commands>.

Solution

xcodes runtimes — Manage Xcode Simulator runtimes. More information: <https://github.com/xcodesorg/xcodes#commands>.

Display all available Simulator runtimes:
xcodes runtimes --include-betas


Download a Simulator runtime:
xcodes runtimes download {{runtime_name}}


Download and install a Simulator runtime:
xcodes runtimes install {{runtime_name}}


Download/install a Simulator runtime for specific iOS/watchOS/tvOS/visionOS version (must be written as case-sensitive):
xcodes runtimes {{download|install}} "{{iOS|watchOS|tvOS|visionOS}} {{runtime_version}}"


Set a specific location where the runtime archive will be first downloaded (defaults to ~/Downloads):
xcodes runtimes {{download|install}} {{runtime_name}} --directory {{path/to/directory}}


Do not delete the downloaded archive when the Simulator is successfully installed:
xcodes runtimes install {{runtime_name}} --keep-archive

Code Snippets

Display all available Simulator runtimes

xcodes runtimes --include-betas

Download a Simulator runtime

xcodes runtimes download {{runtime_name}}

Download and install a Simulator runtime

xcodes runtimes install {{runtime_name}}

Download/install a Simulator runtime for specific iOS/watchOS/tvOS/visionOS version (must be written as case-sensitive)

xcodes runtimes {{download|install}} "{{iOS|watchOS|tvOS|visionOS}} {{runtime_version}}"

Set a specific location where the runtime archive will be first downloaded (defaults to `~/Downloads`)

xcodes runtimes {{download|install}} {{runtime_name}} --directory {{path/to/directory}}

Context

tldr-pages: osx/xcodes runtimes

Revisions (0)

No revisions yet.