-
Notifications
You must be signed in to change notification settings - Fork 141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cant run rawdog on windows. #67
Comments
try |
it's updated on PyPI now! closing this as it should be fixed, please reopen if you experience any more issues. |
rawdog failed to start for some reason.** C:\Users\thele>rawdog So I ran CMD with admin privilege. It worked but it's showing that fatal error. is this normal? Should I still pip install pyreadline3?? |
I have had the same issue. I had exactly the same error as the other guy, .... tried to manually import readline ... the same problem ... tried to import pyreadline ... again ... luckily I have seen this closed message ... so I imported the pyreadline3. And finally. The Windows installation is a pain, and after all these troubles - it cost me a significant amount of time - I am now rather cautious about the product. ... but thanks anyway ... |
@miraculix95 how did you install rawdog? with |
With pip install rawdog-ai |
One information I found missing as well: What Python versions are allowed? Is Python 3.12. allowed? |
Ah, thanks there was an issue with requirements setup, fixed by @jakethekoenig here: #88 Python 3.12 should work! We'll add which versions work, but I'd assume 3.10+ The ~ directory on windows should be something like |
Thanks a lot |
I am using Python 3.12.2
I ran pip install rawdog-ai
then I initially get this error when I run rawdog
Traceback (most recent call last):
File "", line 198, in _run_module_as_main
File "", line 88, in run_code
File "C:\Users\myuser\AppData\Local\Programs\Python\Python312\Lib\site-packages\rawdog_main.py", line 4, in
import readline
ModuleNotFoundError: No module named 'readline'
I installed pip install pyreadline
Now I'm getting this error
C:\Windows\System32>rawdog
Traceback (most recent call last):
File "", line 198, in run_module_as_main
File "", line 88, in run_code
File "C:\Users\myuser\AppData\Local\Programs\Python\Python312\Scripts\rawdog.exe_main.py", line 4, in
File "C:\Users\myuser\AppData\Local\Programs\Python\Python312\Lib\site-packages\rawdog_main.py", line 4, in
import readline
File "C:\Users\myuser\AppData\Local\Programs\Python\Python312\Lib\site-packages\readline.py", line 34, in
rl = Readline()
^^^^^^^^^^
File "C:\Users\myuser\AppData\Local\Programs\Python\Python312\Lib\site-packages\pyreadline\rlmain.py", line 422, in init
BaseReadline.init(self)
File "C:\Users\myuser\AppData\Local\Programs\Python\Python312\Lib\site-packages\pyreadline\rlmain.py", line 62, in init
mode.init_editing_mode(None)
File "C:\Users\myuser\AppData\Local\Programs\Python\Python312\Lib\site-packages\pyreadline\modes\emacs.py", line 633, in init_editing_mode
self._bind_key('space', self.self_insert)
File "C:\Users\myuser\AppData\Local\Programs\Python\Python312\Lib\site-packages\pyreadline\modes\basemode.py", line 162, in _bind_key
if not callable(func):
^^^^^^^^^^^^^^
File "C:\Users\myuser\AppData\Local\Programs\Python\Python312\Lib\site-packages\pyreadline\py3k_compat.py", line 8, in callable
return isinstance(x, collections.Callable)
^^^^^^^^^^^^^^^^^^^^
AttributeError: module 'collections' has no attribute 'Callable'
The text was updated successfully, but these errors were encountered: