Hi!
Windows 11
when I'm installing version Llama3.2-3B-Instruct:int4-qlora-eo8
I get an error NotADirectoryError: [WinError 267] The directory name is invalid: because of the colon ":" in the name
I fixed it by changing the Python code in the script Lib\site-packages\llama_stack\distribution\utils\model_utils.py
line 13 return os.path.join(DEFAULT_CHECKPOINT_DIR, descriptor) --> return os.path.join(DEFAULT_CHECKPOINTDIR, descriptor.replace(":", ""))
Hi! Windows 11 when I'm installing version Llama3.2-3B-Instruct:int4-qlora-eo8 I get an error NotADirectoryError: [WinError 267] The directory name is invalid: because of the colon ":" in the name
I fixed it by changing the Python code in the script Lib\site-packages\llama_stack\distribution\utils\model_utils.py line 13 return os.path.join(DEFAULT_CHECKPOINT_DIR, descriptor) --> return os.path.join(DEFAULT_CHECKPOINTDIR, descriptor.replace(":", ""))