This error occurs after pasting a command to install influxdb
1 |
sudo curl –sL https://repos.influxdata.com/influxdb.key | sudo apt-key add – |
Solution
The error occurs because of the dash at the end of the command and is interpreted as a unicode character rather than the ascii hypen
1 2 3 |
sudo curl –sL https://repos.influxdata.com/influxdb.key | sudo apt-key add – Warning: apt–key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt–key(8)). OK |
Leave a Reply