Open umayado17 opened 1 month ago
I have been using pipx to install open-interpreter on Windows 11, and when I upgraded to .4 just now, I got this:
interpreter --os
Traceback (most recent call last):
File "
...
ModuleNotFoundError: No module named 'pyautogui'
pip install pyautogui pip install opencv-python pip install plyer pip install pywinctl
I've got 3.12 as my main base on Win 11 - I use virtual envs or pipx to go down to 3.11 as needed... maybe that's not the right approach for Windows + AI tinkering.
using pipx ... not pip to enclose it in it's own env... I may back that out...
pipx inject open-interpreter pyautogui uvicorn fastapi
PS C:\Users\vaski> pipx inject open-interpreter pyautogui uvicorn fastapi
injected package pyautogui into venv open-interpreter
done! ✨ 🌟 ✨
injected package uvicorn into venv open-interpreter
done! ✨ 🌟 ✨
injected package fastapi into venv open-interpreter
done! ✨ 🌟 ✨
PS C:\Users\vaski>
PS C:\Users\vaski>
PS C:\Users\vaski> interpreter --os
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "c:\users\vaski\.local\bin\interpreter.exe\__main__.py", line 4, in <module>
File "C:\Users\vaski\pipx\venvs\open-interpreter\Lib\site-packages\interpreter\__init__.py", line 52, in <module>
from .computer_use.loop import run_async_main
File "C:\Users\vaski\pipx\venvs\open-interpreter\Lib\site-packages\interpreter\computer_use\loop.py", line 113, in <module>
* The current date is {datetime.today().strftime('%A, %B %-d, %Y')}.
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ValueError: Invalid format string
If you avoid the conflict by following the procedure described in this issue and successfully install, the error message in the comment above will appear when you start the system. The solution to this error has been reported as Issue 1495. Please refer to that.
Is your feature request related to a problem? Please describe.
documentation, enhancement
Describe the solution you'd like
This is a guide for installing Open Interpreter on Windows 11 with Python 3.11, focusing on resolving dependency issues and providing a clear installation sequence.
Current Documentation Gap
The current documentation doesn't provide specific guidance for Windows users, who may encounter dependency conflicts during installation. This can lead to installation failures or runtime errors.
Suggested Documentation Addition
Windows 11 Installation Guide
Prerequisites
Step-by-Step Installation
Create and activate a virtual environment:
Upgrade pip:
Install dependencies in sequence:
Install open-interpreter:
For OS functionality, add:
Troubleshooting
Common issues and solutions:
Benefits
Additional Suggestions
Would you consider adding this to the official documentation?
Describe alternatives you've considered
No response
Additional context
No response