我正在尝试在 ubuntu 14.04 上安装 chrome。我的系统是 64 位。我收到此错误。
$ sudo dpkg –i google-chrome-stable_current_amd64.deb
dpkg: error: need an action option`
`Type dpkg --help for help about installing and deinstalling packages [*];
Use 'apt' or 'aptitude' for user-friendly package management;
Type dpkg -Dhelp for a list of dpkg debug flag values;
Type dpkg --force-help for a list of forcing options;
Type dpkg-deb --help for help about manipulating *.deb files;`
`Options marked [*] produce a lot of output - pipe it through 'less' or 'more'!`
据我了解,-i 是一个操作选项。我做错了什么?
答案1
我猜这是你从网站或类似的东西上复制的命令,因为前面的破折号i
不是连字符(或减号),而是短划线:
$ od -c <<<"–"
0000000 342 200 223 \n
0000004
$ od -c <<<"-"
0000000 - \n
0000002
请使用适当的-
。
dpkg
除非需要,否则不要使用;软件中心可以.deb
很好地处理文件,只需双击文件,或者执行xdg-open google-chrome-stable_current_amd64.deb
。