Is there a one-liner shortcut for:
git clone https://github.com/user/mypythonmodule.git
cd mypythonmodule
python setup.py install
cd ..
like
git clone install https://github.com/user/mypythonmodule.git
or doesn't this exist?
If you use pip it supports installing from git URLs.
From the pip documentation
"pip currently supports cloning over git, git+https and git+ssh"
So you would do
pip install git+https://github.com/user/mypythonmodule.git
pip, because on my Raspbian Wheezy : apt-get install python-pip installs pip + .... Python 2.6 on top of Python 2.7 ... :s ugly !git+prefix? For me it seems that it has to be pip install git+https://github.com/user/mypythonmodule.git
mypythonmodulewith your solution