get-codex/index.html

91 lines
2.3 KiB
HTML
Raw Normal View History

2024-10-15 06:51:29 +00:00
<!DOCTYPE html>
<html>
<head>
<title>Get Codex</title>
<style>
2024-10-15 06:51:29 +00:00
html * {
font-size: 14px;
line-height: 1.5;
color: black;
font-family: monospace;
2024-10-15 06:51:29 +00:00
}
</style>
</head>
2024-10-15 06:51:29 +00:00
<body>
<h3>
Get Codex - Linux, macOS and Windows (msys2)
</h3>
2024-10-15 06:51:29 +00:00
<p>
<span style="color:grey;">
# latest version
</span>
<br>
curl -s https://get.codex.storage/install.sh | bash
</p>
2024-10-15 06:51:29 +00:00
<p>
<span style="color:grey;">
# specific version
</span>
<br>
curl -s https://get.codex.storage/install.sh | VERSION=0.1.7 bash
</p>
2024-10-15 06:51:29 +00:00
<p>
<span style="color:grey;">
# latest codex and cirdl
</span>
<br>
curl -s https://get.codex.storage/install.sh | INSTALL_CIRDL=true bash
</p>
2024-10-15 06:51:29 +00:00
<p>
<span style="color:grey;">
2024-10-15 17:24:16 +00:00
# codex and cirdl with required libraries on Windows with msys2
</span>
<br>
curl -s https://get.codex.storage/install.sh | INSTALL_CIRDL=true WINDOWS_LIBS=true bash
</p>
2024-11-08 17:03:54 +00:00
<br>
2024-11-08 17:03:54 +00:00
<h3>
Get Codex - Windows
2024-11-08 17:03:54 +00:00
</h3>
2024-11-08 17:03:54 +00:00
<p>
<span style="color:grey;">
:: latest version
</span>
<br>
curl -sO https://get.codex.storage/install.cmd && install.cmd
</p>
2024-11-08 17:03:54 +00:00
<p>
<span style="color:grey;">
:: specific version
</span>
<br>
curl -sO https://get.codex.storage/install.cmd && set VERSION=0.1.7 & install.cmd
</p>
2024-11-08 17:03:54 +00:00
<p>
<span style="color:grey;">
:: latest codex and cirdl
</span>
<br>
curl -sO https://get.codex.storage/install.cmd && set INSTALL_CIRDL=true install.cmd
</p>
2024-11-08 17:03:54 +00:00
<p>
<span style="color:grey;">
:: codex and cirdl without libraries
</span>
<br>
curl -sO https://get.codex.storage/install.cmd && set INSTALL_CIRDL=true & set WINDOWS_LIBS=false & install.cmd
</p>
2024-10-15 06:51:29 +00:00
</body>
</html>