Changes between Initial Version and Version 1 of DevelopmentTips

Show
Ignore:
Timestamp:
03/11/08 03:30:34 (5 years ago)
Author:
stefan
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DevelopmentTips

    v1 v1  
     1== Developing NumPy in-place == 
     2 
     3Compile the extensions in-place: 
     4 
     5{{{ 
     6python setup.py build_ext -i 
     7}}} 
     8 
     9Install a sym-link to the numpy directory: 
     10 
     11{{{ 
     12python 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 
     17Now, changes you make to python files in the numpy directories will immediately be reflected upon module import.