tabs
This commit is contained in:
parent
7ef1cd8a67
commit
a805d1f0ad
|
|
@ -1,13 +1,32 @@
|
|||
import Tabs from '@theme/Tabs';
|
||||
import TabItem from '@theme/TabItem';
|
||||
|
||||
# Installation
|
||||
|
||||
Create a new Python 3.12 virtual environment and install RA.Aid:
|
||||
|
||||
```bash
|
||||
uv venv -p 3.12
|
||||
source .venv/bin/activate # On Unix/macOS
|
||||
# or
|
||||
.venv\Scripts\activate # On Windows
|
||||
```
|
||||
|
||||
<Tabs groupId="operating-system">
|
||||
<TabItem value="unix" label="Unix/macOS">
|
||||
|
||||
```bash
|
||||
source .venv/bin/activate
|
||||
```
|
||||
|
||||
</TabItem>
|
||||
<TabItem value="windows" label="Windows">
|
||||
|
||||
```bash
|
||||
.venv\Scripts\activate
|
||||
```
|
||||
|
||||
</TabItem>
|
||||
</Tabs>
|
||||
|
||||
```bash
|
||||
uv pip install ra-aid
|
||||
```
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue