Я пытался установить Auto-PyTorch, автоматическую c систему настройки нейронной сети (подробнее об установке здесь: https://github.com/automl/Auto-PyTorch) в системе Windows 10. Шаги установки следующие:
$ cd install/path
$ git clone https://github.com/automl/Auto-PyTorch.git
$ cd Auto-PyTorch
$ cat requirements.txt | xargs -n 1 -L 1 pip install
$ python setup.py install
Однако я не могу обойти следующую строку кода:
cat requirements.txt | xargs -n 1 -L 1 pip install
Как только я доберусь туда, следующее Windows PowerShell возникает ошибка:
xargs : The term 'xargs' is not recognized as the name of a cmdlet, function, script file, or
operable program.
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:86
+ ... read.CurrentUICulture = 'en-US'; cat requirements.txt | xargs -n 1 -L ...
+ ~~~~~
+ CategoryInfo : ObjectNotFound: (xargs:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
Обратите внимание, что я передал следующую строку кода, поэтому ошибка выдается на английском языке sh (я испанец sh):
[Threading.Thread]::CurrentThread.CurrentUICulture = 'en-US'; cat requirements.txt | xargs -n 1 -L 1 pip install
Я не эксперт по PowerShell, поэтому буду очень признателен за вашу помощь.
С уважением!