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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With