-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
title: Docs for Conda Mode | ||
description: Installs SDK through Conda. | ||
--- | ||
|
||
import {Aside } from '@astrojs/starlight/components'; | ||
|
||
<Aside type="caution" title="Note"> | ||
When an SDK is not supported by VMR, but available in [Conda-Forge](https://conda-forge.org/packages/), | ||
You can install the SDK using commands below. But you need to add Envs manually according to the hints from VMR. | ||
</Aside> | ||
|
||
## Search versions through Conda | ||
|
||
```bash | ||
vmr search -c sdk-name | ||
``` | ||
|
||
## Install a version through Conda | ||
|
||
```bash | ||
vmr use -c sdk-name@version | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
title: Conda方式教程 | ||
description: 在命令行模式下直接使用Conda安装SDK. | ||
--- | ||
|
||
import {Aside } from '@astrojs/starlight/components'; | ||
|
||
<Aside type="caution" title="Note"> | ||
当VMR不支持某个SDK,而[Conda-Forge](https://conda-forge.org/packages/)支持了该SDK时,使用本方法可以进行该SDK的版本安装和管理。 | ||
但无法自动添加环境变量。用户可以根据提示,手动添加环境变量到vmr.sh。 | ||
</Aside> | ||
|
||
## 通过Conda搜索可安装版本 | ||
|
||
```bash | ||
vmr search -c sdk-name | ||
``` | ||
|
||
## 通过Conda安装VMR为支持的SDK | ||
|
||
```bash | ||
vmr use -c sdk-name@version | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters