beyondmeh / piu

Cross platform package manager wrapper
ISC License
49 stars 11 forks source link

Installation command does not work (Ubuntu 20.04.1 LTS) #19

Closed gtsop closed 3 years ago

gtsop commented 3 years ago

The syntax of the curl command seems to be wrong:

$ curl -o https://raw.githubusercontent.com/beyondmeh/piu/master/piu && sudo mv piu /usr/local/bin && sudo chmod +x /usr/local/bin/piu
curl: no URL specified!
curl: try 'curl --help' or 'curl --manual' for more information

Seems like it should be like so:

curl https://raw.githubusercontent.com/beyondmeh/piu/master/piu -o piu && sudo mv piu /usr/local/bin && sudo chmod +x /usr/local/bin/piu

or

wget https://raw.githubusercontent.com/beyondmeh/piu/master/piu && sudo mv piu /usr/local/bin && sudo chmod +x /usr/local/bin/piu