I am learning the dpkg's usage. So, I am trying to install the wps-office package as example.
sudo dpkg -i wps-office_10.1.05672~a21.deb
which returns an error: Can not access the archive: No such file or folder
What's wrong did I do?
I am learning the dpkg's usage. So, I am trying to install the wps-office package as example.
sudo dpkg -i wps-office_10.1.05672~a21.deb
which returns an error: Can not access the archive: No such file or folder
What's wrong did I do?
You must specify the absolute or relative path to the file. If you are running it from a terminal, and you are located in the file path, just run:
sudo dpkg -i ./wps-office_10.1.05672~a21.deb
Note the ./
Otherwise, you could use:
sudo dpkg -i <path_to_file>/wps-office_10.1.05672~a21.deb
where <path_to_file>
could be something like /home/$USER/Documents
or
sudo dpkg -i ../../wps-office_10.1.05672~a21.deb
if you are in a subfolder down two levels of the file folder.
sudo dpkg -i
then drag the file on to the terminal window. Should be a dupe of a few others. – Jacob Vlijm Jan 18 '17 at 19:22