Changes between Version 2 and Version 3 of ExternalPythonPackages
- Timestamp:
- 03/13/12 14:29:09 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ExternalPythonPackages
v2 v3 14 14 curl http://python-distribute.org/distribute_setup.py | python 15 15 curl --insecure https://raw.github.com/pypa/pip/master/contrib/get-pip.py | python 16 }}} 16 17 17 rem Create a batch file to run pip: 18 Create a batch file to run pip: 19 {{{ 18 20 copy con %osgeo4w_root%\bin\pip.bat 19 21 %pythonhome%\Scripts\pip.exe %*[ctrl-Z] … … 21 23 (recipe adapted from [http://www.pip-installer.org/en/latest/installing.html pip install instructions]) 22 24 23 Now you can install (or remove) what you're really after: 25 Now you can install (or remove) what you're really after 26 (ipython - Productive Interactive Computing, a great python shell): 24 27 {{{ 25 rem ipython - Productive Interactive Computing, a great python shell26 28 pip install ipython 27 29 pip uninstall foobar … … 31 33 It's a good idea to run from a temp or scratch directory because a failed build will leave files behind (and a great many of the packages fail). 32 34 33 34