get-codex/index.html

51 lines
1.1 KiB
HTML
Raw Normal View History

2024-10-15 06:51:29 +00:00
<!DOCTYPE html>
<html>
<head>
<style>
html * {
font-size: 14px;
line-height: 1.5;
color: black;
font-family: monospace;
}
</style>
</head>
<body>
<h1>Install Codex</h3>
<p>
<span style="color:grey;">
# Install latest Codex
</span>
<br>
curl -s https://get.codex.storage/install.sh | bash
2024-10-15 06:51:29 +00:00
</p>
<p>
<span style="color:grey;">
# Install specific version of Codex
</span>
<br>
curl -s https://get.codex.storage/install.sh | VERSION=0.1.7 bash
2024-10-15 06:51:29 +00:00
</p>
<p>
<span style="color:grey;">
# Install latest Codex with cirdl
</span>
<br>
curl -s https://get.codex.storage/install.sh | INSTALL_CIRDL=true bash
2024-10-15 06:51:29 +00:00
</p>
<p>
<span style="color:grey;">
# On Windows with msys2 install Codex with required libraries
</span>
<br>
curl -s https://get.codex.storage/install.sh | WINDOWS_LIBS=true INSTALL_CIRDL=true bash
2024-10-15 06:51:29 +00:00
</p>
</body>
</html>