Changes between Initial Version and Version 1 of DevelopmentTips
- Timestamp:
- 03/11/08 03:30:34 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevelopmentTips
v1 v1 1 == Developing NumPy in-place == 2 3 Compile the extensions in-place: 4 5 {{{ 6 python setup.py build_ext -i 7 }}} 8 9 Install a sym-link to the numpy directory: 10 11 {{{ 12 python setupegg.py develop --prefix=${HOME} 13 }}} 14 15 (Use the prefix if you prefer a local install, instead of contaminating the system-wide installation directory). 16 17 Now, changes you make to python files in the numpy directories will immediately be reflected upon module import.
