是否有单线快捷键:
git clone https://github.com/user/mypythonmodule.git
cd mypythonmodule
python setup.py install
cd ..
像
git clone install https://github.com/user/mypythonmodule.git
或者这不存在?
答案 0 :(得分:7)
如果你使用pip,它支持从git URL安装。
“pip目前支持克隆git,git + https和git + ssh”
所以你会这样做
pip install git+https://github.com/user/mypythonmodule.git