git clone +在Python中安装

时间:2015-05-21 08:31:18

标签: python git pip

是否有单线快捷键:

git clone https://github.com/user/mypythonmodule.git
cd mypythonmodule
python setup.py install
cd ..

git clone install https://github.com/user/mypythonmodule.git

或者这不存在?

1 个答案:

答案 0 :(得分:7)

如果你使用pip,它支持从git URL安装。

来自pip documentation

“pip目前支持克隆git,git + https和git + ssh”

所以你会这样做

pip install git+https://github.com/user/mypythonmodule.git