Skip to content

Commit

Permalink
rendered examples
Browse files Browse the repository at this point in the history
  • Loading branch information
nataliefiann committed Dec 30, 2024
1 parent 568191f commit bc1fcb7
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion website/docs/docs/core/create-a-python-virtual-environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ To install a Python virtual environment, navigate to your project directory and

<Tabs>
<TabItem value="Unix/macOS" label="Unix/macOS">
1. Create your virtual environment
1. Create your virtual environment:

```shell
python3 -m venv env
Expand All @@ -40,7 +40,17 @@ To install a Python virtual environment, navigate to your project directory and

```shell
source env/bin/activate
```

3. Verify Python Path:

```shell
which python
```

4. Run Python:

```shell
env/bin/python
```
</TabItem>
Expand All @@ -56,7 +66,17 @@ To install a Python virtual environment, navigate to your project directory and

```shell
env\Scripts\activate
```

3. Verify Python Path:

```shell
where python
```

4. Run Python:

```shell
env\Scripts\python
```
</TabItem>
Expand Down

0 comments on commit bc1fcb7

Please sign in to comment.