denorg / qrcode

📇 Generate QR code images in Deno
https://denorg.github.io/qrcode/
MIT License
42 stars 11 forks source link

Fix package installation command #3

Closed moncefplastin07 closed 4 years ago

moncefplastin07 commented 4 years ago

Remove qrcode arguments in installation command because adding them causes a problem during execution the correct command is:

deno install https://deno.land/x/qrcode/cli.ts

the default executable name is the file name or parent folder in this case qrcode is the executable name of the package or you can use it as executable name of the package by adding -n Or --name flags before it

deno install -n qrcode https://deno.land/x/qrcode/cli.ts

Deno - Script installer

AnandChowdhary commented 4 years ago

Thanks!