Skip to content

Commit b6104d8

Browse files
haydenstockfacebook-github-bot
authored andcommitted
{Documentation} Add Windows steps to AEA install
Summary: Added Windows steps for setting up a virtual environment to get started with the Aria Everyday Activities dataset. Reviewed By: PiotrBrzyski Differential Revision: D78566425 fbshipit-source-id: f76917b8931237c3a51f352e79a4eb0ee0299047
1 parent 0dc8d83 commit b6104d8

1 file changed

Lines changed: 14 additions & 3 deletions

File tree

website/docs/open_datasets/aria_everyday_activities_dataset/aea_getting_started.mdx

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
sidebar_position: 10
33
title: Getting Started
44
---
5+
import Tabs from '@theme/Tabs';
6+
import TabItem from '@theme/TabItem';
57

68
# Getting Started With AEA
79

@@ -46,13 +48,22 @@ If you have problems using Jupyter examples, please [upgrade python3](https://ww
4648
### Step 2 : Create a virtual environment
4749

4850

49-
```
51+
<Tabs groupId="operating-systems">
52+
<TabItem value="unix" label="Linux & macOS">
53+
```bash
5054
rm -rf $HOME/projectaria_tools_python_env
51-
5255
python3 -m venv $HOME/projectaria_tools_python_env
53-
5456
source $HOME/projectaria_tools_python_env/bin/activate
5557
```
58+
</TabItem>
59+
<TabItem value="windows" label="Windows">
60+
```bash
61+
Remove-Item $HOME\projectaria_tools_python_env
62+
py -3 -m venv $HOME\projectaria_tools_python_env
63+
& $HOME\projectaria_tools_python_env\Scripts\Activate.ps1
64+
```
65+
</TabItem>
66+
</Tabs>
5667

5768

5869
### Step 3 : Install `projectaria-tools` from PyPI

0 commit comments

Comments
 (0)