终端中的位置参数错误是什么?

终端中的位置参数错误是什么?

在安装搅拌机的软件插件时,出现以下错误:

usr@Dell:~/Desktop$ chmod +x radeon.run
usr@Dell:~/Desktop$ ./radeon.run
Verifying archive integrity... All good.
Uncompressing Radeon ProRender for Blender  100%  
the following arguments are required: blender_path
usage: install.py [-h] [--no-matlib] [-v] [--log-file LOG_FILE]
                  [--distr-dir DISTR_DIR]
                  blender_path 

我收到此错误并且进程终止。

据我了解,我需要附加env这是在 bash 中输入的命令)。这是问题吗?我该如何编辑/修复它?

答案1

您必须提供 blender 可执行文件的目录路径。

usr@Dell:~/Desktop$ sudo ./radeon.run  <blender_path>

我的 blender 可执行文件位于 /usr/bin。因此,我的 blender 路径将是 /usr/bin。完整命令:

sudo ./radeon.run /usr/bin

相关内容