Installed pd2dsy today and tried both the gui version and command line version and am getting access denied errors trying to build an example per instructions, but the folder is accessible, any suggestions/ideas please? Thanks much for any hints!
GUI version is simply stuck in “Compiling…”
Command line version gives me this error string:
$ python pd2dsy.py --board patch ./examples/PdFiles/patch_test.pd
Namespace(pd_input='./examples/PdFiles/patch_test.pd', board='patch', custom_json='', search_paths=None, directory='.', force=False, ram='speed', rom='speed', libdaisy_path=None, no_build=False, log=None, flash_bootloader=None)
Generating project in "patch_test"
Traceback (most recent call last):
File "C:\Users\123456\Documents\pd\pd2dsy\pd2dsy.py", line 356, in <module>
main(args)
~~~~^^^^^^
File "C:\Users\123456\Documents\pd\pd2dsy\pd2dsy.py", line 316, in main
return_code, main_file, logfile = compile_project(output, meta, linker_file, args)
~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\123456\Documents\pd\pd2dsy\pd2dsy.py", line 197, in compile_project
shutil.rmtree(os.path.join(output, 'daisy'))
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\123456\AppData\Local\Programs\Python\Python313\Lib\shutil.py", line 790, in rmtree
return _rmtree_unsafe(path, onexc)
File "C:\Users\123456\AppData\Local\Programs\Python\Python313\Lib\shutil.py", line 635, in _rmtree_unsafe
onexc(os.rmdir, path, err)
~~~~~^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\123456\AppData\Local\Programs\Python\Python313\Lib\shutil.py", line 631, in _rmtree_unsafe
os.rmdir(path)
~~~~~~~~^^^^^^
PermissionError: [WinError 5] Access is denied: 'patch_test\\daisy'
(pd_env)