I am trying to install ubuntu SDK but when I enter this command:
sudo add-apt-repository ppa:ubuntu-sdk-team/ppa && sudo apt-get update && sudo apt-get install ubuntu-sdk
I got an ppa error to check internet connection. So to over come this problem, I used these commands
export http_proxy=htt://username:[email protected]:port/export
sudo su add-apt-repository ppa:ubuntu-sdk-team/ppa && sudo apt-get update && sudo apt-get install ubuntu-sdk
But now I am getting this error:
No passwd entry for user 'add-apt-repository
Please help me out, as I really want to work on this SDK as I want to do something in open source world and want to develop something. Thanks!
sudo add-apt-repository ppa:<ppa-name>/ppa
. You have an errantsu
in the middle. – david6 Jul 14 '13 at 11:16