mirror of
https://github.com/codex-storage/get-codex.git
synced 2025-02-23 06:28:16 +00:00
53 lines
1.2 KiB
HTML
53 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Get Codex</title>
|
|
<style>
|
|
html * {
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
color: black;
|
|
font-family: monospace;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<h3>
|
|
Get Codex
|
|
</h3>
|
|
|
|
<p>
|
|
<span style="color:grey;">
|
|
# latest version
|
|
</span>
|
|
<br>
|
|
curl -s https://get.codex.storage/install.sh | bash
|
|
</p>
|
|
|
|
<p>
|
|
<span style="color:grey;">
|
|
# specific version
|
|
</span>
|
|
<br>
|
|
curl -s https://get.codex.storage/install.sh | VERSION=0.1.7 bash
|
|
</p>
|
|
|
|
<p>
|
|
<span style="color:grey;">
|
|
# latest codex and cirdl
|
|
</span>
|
|
<br>
|
|
curl -s https://get.codex.storage/install.sh | INSTALL_CIRDL=true bash
|
|
</p>
|
|
|
|
<p>
|
|
<span style="color:grey;">
|
|
# codex with required libraries on Windows with msys2
|
|
</span>
|
|
<br>
|
|
curl -s https://get.codex.storage/install.sh | WINDOWS_LIBS=true INSTALL_CIRDL=true bash
|
|
</p>
|
|
</body>
|
|
</html>
|