Following the latest source

这些是如果你只是想要跟随最新的NumPy源,但你现在不需要做任何开发的指令。如果你想贡献一个补丁(优秀!)或进行更广泛的NumPy开发,请参阅Development workflow

步骤是:

Get the local copy of the code

从命令行:

git clone git://github.com/numpy/numpy.git

你现在有一个新的numpy目录中的代码树的副本。如果这不工作你可以尝试替代只读url:

git clone https://github.com/numpy/numpy.git

Updating the code

有时你可能想下拉最新的代码。这样做:

cd numpy
git fetch
git merge --ff-only

numpy中的树现在将具有初始存储库的最新更改。