xinkui
Results
1
comments of
xinkui
这个是没有对mac系统文件符号链接支持,可以先修改源码:/opt/anaconda3/envs/rdagent4qlib/lib/python3.10/site-packages/rdagent/core/experiment.py 这个里面的这个方法替换成以下(添加对mac的支持): @staticmethod def link_all_files_in_folder_to_workspace(data_path: Path, workspace_path: Path) -> None: data_path = Path(data_path).absolute() # in case of relative path that will be invalid when we change cwd. workspace_path = Path(workspace_path)...