Trying to install propelleride
Shawn Lowe
Posts: 635
in Propeller 1
Hello all-
Im trying to install propelleride on my linux machine, Cutting and pasting the commands on the download page and I get this error:
Thanks
Shawn
Im trying to install propelleride on my linux machine, Cutting and pasting the commands on the download page and I get this error:
dpkg: error processing archive propelleride-0.33.3-amd64.deb (--install): cannot access archive: No such file or directory Errors were encountered while processing: propelleride-0.33.3-amd64.debIm not the brightest when it comes to linux (which is why i installed it to get better), can anyone help?
Thanks
Shawn
Comments
Presuming you downloaded version 0.33.3 to your Download directory then:
$ cd Download
$ sudo dpkg -i propelleride-0.33.3-amd64.deb
Or you could specify the path and do it from whichever directory you are currently in, for example:
$ sudo dpkg -i /home/yourUserName/Download propelleride-0.33.3-amd64.deb
I am using Linux Mint.
where does it put the program? I tried that and it said it installed but darn it if i can find it in my system
Sorry I have never installed it from a deb package so I'm not sure exactly where it gets put.
If it did install you should be able to use the 'which' command to show you the location, assuming it was installed into a location that is in your $PATH environment variable.
You could also try:
To find a specific package's location you can use the dpkg command with the -L flag. For example if you wanted to find all of the installed files for Apache2, you could run:
dpkg -L apache2
Cheers