Jarvis icon indicating copy to clipboard operation
Jarvis copied to clipboard

error running jarvis.bat

Open sans6271 opened this issue 1 year ago • 1 comments

every time i try to start jarvis i get the following error:

An unexpected error occurred. Please open an issue on github! here is the error:

Traceback (most recent call last): File "C:\Windows\system32\jarviscli_main_.py", line 17, in import steps.e_launcher File "C:\Windows\system32\jarviscli\steps\e_launcher.py", line 33, in fw = open('jarvis.bat', 'w') ^^^^^^^^^^^^^^^^^^^^^^^ PermissionError: [Errno 13] Permission denied: 'jarvis.bat'

sans6271 avatar Sep 19 '24 09:09 sans6271

The error you're seeing, PermissionError: [Errno 13] Permission denied: 'jarvis.bat', typically happens when the program you're trying to run doesn't have sufficient permissions to write to the specified location. The script is trying to create or modify the file jarvis.bat in C:\Windows\system32, which requires administrator privileges for modification.

You can resolve this problem by either running the script with administrator permissions, or change the file path from system32 to somewhere where its doesn't require administrator permissions

tankarageldi avatar Oct 03 '24 00:10 tankarageldi