Following the latest source¶
这些是如果你只是想要跟随最新的NumPy源,但你现在不需要做任何开发的指令。如果你想贡献一个补丁(优秀!)或进行更广泛的NumPy开发,请参阅Development workflow。
步骤是:
- Install git
- 从Github获取git存储库的本地副本
- 不时更新本地副本
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
中的树现在将具有初始存储库的最新更改。