You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
3.**Create a Python virtual environment**. [Learn more about Python virtual environment](https://docs.python.org/3/library/venv.html).
57
-
58
-
```
59
-
python3 -m venv venv
60
-
```
61
-
4.**Activate the virtual environment**:
62
-
```
63
-
source venv/bin/activate
64
-
```
65
-
5.**Install Project Requirements and Command-Line Interface: Instead of using `pip install .`, you can now install the project directly from PyPI with:**
41
+
## Run `Self-Operating Computer`
42
+
Install the project
66
43
```
67
44
pip install self-operating-computer
68
45
```
69
-
6.**Then rename the `.example.env` file to `.env` so that you can save your OpenAI key in it.**
70
-
```
71
-
mv .example.env .env
72
-
```
73
-
7.**Add your Open AI key to your new `.env` file. If you don't have one, you can obtain an OpenAI key [here](https://platform.openai.com/account/api-keys)**:
74
-
```
75
-
OPENAI_API_KEY='your-key-here'
76
-
```
77
-
78
-
8.**Run it**!
46
+
Next fire the main command
79
47
```
80
48
operate
81
49
```
82
-
9.**Final Step**: As a last step, the Terminal app will ask for permission for "Screen Recording" and "Accessibility" in the "Security & Privacy" page of Mac's "System Preferences".
50
+
**Final Step**: As a last step, the Terminal app will ask for permission for "Screen Recording" and "Accessibility" in the "Security & Privacy" page of Mac's "System Preferences".
0 commit comments