如果我运行:
!wget -P ./arcface_model https://github.com/neuralchen/SimSwap/releases/download/1.0/arcface_checkpoint.tar
从我的 windows11 上的 jupyter 笔记本中它无法识别 !wget,即使 wget 已安装并被 powershell 识别。
如果我尝试从 powershell 中执行 wget -P,它会抱怨 -P 为“Invoke-WebRequest:无法处理参数,因为参数名称‘P’不明确”。我只是想将 tar 文件放入 -P 参数后的目录中。
如果我需要使用 curl 命令,那么等效命令是什么?
答案1
PowerShell 中的命令wget
是 PowerShell 本机命令的别名,名为
调用 Web 请求
没有这些参数。
改用wget
命令提示符 (CMD) 中的产品。