Skip to content

Commit 588aba6

Browse files
committed
update readme, and the wheel script
1 parent a17c30a commit 588aba6

File tree

2 files changed

+6
-12
lines changed

2 files changed

+6
-12
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ We have released pre-built wheels for various Python versions, platforms, and ba
99
### CPU Installation
1010

1111
```bash
12-
pip install nexaai --prefer-binary --index-url https://nexaai.github.io/nexa-sdk/whl/cpu --extra-index-url https://pypi.org/simple --no-cache-dir
12+
pip install nexa-enterprise --prefer-binary --index-url https://nexaai.github.io/nexa-sdk-enterprise/whl/cpu --extra-index-url https://pypi.org/simple --no-cache-dir
1313
```
1414

1515
### GPU Installation (Vulkan)
@@ -19,27 +19,27 @@ To install with Vulkan support, make sure you have [Vulkan SDK 1.3.261.1 or late
1919
For **Windows PowerShell**:
2020

2121
```bash
22-
$env:CMAKE_ARGS="-DGGML_VULKAN=on"; pip install nexaai --prefer-binary --index-url https://nexaai.github.io/nexa-sdk/whl/vulkan --extra-index-url https://pypi.org/simple --no-cache-dir
22+
$env:CMAKE_ARGS="-DGGML_VULKAN=on"; pip install nexa-enterprise --prefer-binary --index-url https://nexaai.github.io/nexa-sdk-enterprise/whl/vulkan --extra-index-url https://pypi.org/simple --no-cache-dir
2323
```
2424

2525
For **Windows Command Prompt**:
2626

2727
```bash
28-
set CMAKE_ARGS="-DGGML_VULKAN=on" & pip install nexaai --prefer-binary --index-url https://nexaai.github.io/nexa-sdk/whl/vulkan --extra-index-url https://pypi.org/simple --no-cache-dir
28+
set CMAKE_ARGS="-DGGML_VULKAN=on" & pip install nexa-enterprise --prefer-binary --index-url https://nexaai.github.io/nexa-sdk-enterprise/whl/vulkan --extra-index-url https://pypi.org/simple --no-cache-dir
2929
```
3030

3131
For **Windows Git Bash**:
3232

3333
```bash
34-
CMAKE_ARGS="-DGGML_VULKAN=on" pip install nexaai --prefer-binary --index-url https://nexaai.github.io/nexa-sdk/whl/vulkan --extra-index-url https://pypi.org/simple --no-cache-dir
34+
CMAKE_ARGS="-DGGML_VULKAN=on" pip install nexa-enterprise --prefer-binary --index-url https://nexaai.github.io/nexa-sdk-enterprise/whl/vulkan --extra-index-url https://pypi.org/simple --no-cache-dir
3535
```
3636

37-
### Local Build
37+
### Local Build (You may need to acquire access to this private repo first.)
3838

3939
How to clone this repo:
4040

4141
```bash
42-
git clone --recursive https://github.com/NexaAI/nexa-sdk
42+
git clone --recursive https://github.com/NexaAI/nexa-sdk-enterprise
4343
```
4444

4545
If you forget to use `--recursive`, you can use below command to add submodule:

scripts/releases-to-pep-503.sh

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -115,12 +115,6 @@ if [ "$version" == "cpu" ]; then
115115
echo " <body>" >> "$root_dir/index.html"
116116
echo " <h1>NEXAAI SDK Python Wheels</h1>" >> "$root_dir/index.html"
117117
echo " <a href=\"cpu/\">CPU</a><br>" >> "$root_dir/index.html"
118-
echo " <a href=\"metal/\">Metal</a><br>" >> "$root_dir/index.html"
119-
# echo " <a href=\"cu121/\">CUDA 12.1</a><br>" >> "$root_dir/index.html"
120-
# echo " <a href=\"cu122/\">CUDA 12.2</a><br>" >> "$root_dir/index.html"
121-
# echo " <a href=\"cu123/\">CUDA 12.3</a><br>" >> "$root_dir/index.html"
122-
echo " <a href=\"cu124/\">CUDA 12.4</a><br>" >> "$root_dir/index.html"
123-
echo " <a href=\"rocm621/\">ROCm 6.2.1</a><br>" >> "$root_dir/index.html"
124118
echo " <a href=\"vulkan/\">Vulkan</a><br>" >> "$root_dir/index.html"
125119
echo " </body>" >> "$root_dir/index.html"
126120
echo "</html>" >> "$root_dir/index.html"

0 commit comments

Comments
 (0)