mirror of
https://github.com/aljazceru/goose.git
synced 2026-01-13 11:24:23 +01:00
22 lines
743 B
JavaScript
22 lines
743 B
JavaScript
import React from "react";
|
|
import Admonition from "@theme/Admonition";
|
|
|
|
const SupportedEnvironments = () => {
|
|
return (
|
|
<Admonition type="info" title="Supported Environments">
|
|
The Goose CLI currently works on <strong>macOS</strong> and <strong>Linux</strong> systems and supports both <strong>ARM</strong> and <strong>x86</strong> architectures.
|
|
|
|
On <strong>Windows</strong>, Goose CLI can run via WSL. If you'd like to request support for additional operating systems, please{" "}
|
|
<a
|
|
href="https://github.com/block/goose/discussions/867"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
vote on GitHub
|
|
</a>.
|
|
</Admonition>
|
|
);
|
|
};
|
|
|
|
export default SupportedEnvironments;
|