Re: Upgrading a largish group of packages w/ distutils
- From: Skip Montanaro <skip@xxxxxxxxx>
- Date: Thu, 31 May 2007 14:52:31 +0000 (UTC)
export PYTHONPATH=$HOME/local/lib/python-2.4/site-packages
cd ~/src
cd numpy
python setup.py install --prefix=$PYTHONPATH
cd ../scipy
python setup.py install --prefix=$PYTHONPATH
cd ../matplotlib
python setup.py install --prefix=$PYTHONPATH
cd ../ipython
python setup.py install --prefix=$PYTHONPATH
Ack! Make that:
export PYTHONPATH=$HOME/local/lib/python-2.4/site-packages
export PYTHONPFX=$HOME/local
cd ~/src
cd numpy
python setup.py install --prefix=$PYTHONPFX
cd ../scipy
python setup.py install --prefix=$PYTHONPFX
cd ../matplotlib
python setup.py install --prefix=$PYTHONPFX
cd ../ipython
python setup.py install --prefix=$PYTHONPFX
Skip
.
Relevant Pages
- Re: missing dependency is actually there
... It's failed depndency is python =>2.4, ... Find the yum repositories for your Centos version. ... As a newbie you tried to install a package without some background ... NumPy instead of Numeric for those numerical extensions for Python. ... (linux.redhat) - Re: Whats so funny? WAS Re: rotor replacement
... That I have to download and perhaps install them to use ... > * I have to download and build the MySQLdb package to talk to MySQL ... > servers from Python code ... I can write something using a core module instead of an external ... (comp.lang.python) - RE: Python 2.4 killing commercial Windows Python development ?
... > install fully useable Python on their Windows machines. ... > Quicksomething for Windows, or RealPlayer, ... The Windows application that I develop and distribute relies on Python ... (comp.lang.python) - Re: bytecode non-backcompatibility
... Unstable bytecodes makes updating to a newer version of Python very ... >>>tedious and risk breaking old scripts, ... > setup.py install" to install the library into site-package. ... each port has a list of all the other ports it depends ... (comp.lang.python) - HOWTO: Python 2.3 on Fedora Core 1 Linux
... About the 'new' Python ... Appendix A: Python Installation with Tkinter - edit: Modules/Setup.dist ... Be aware that it is always risky to install new software; ... # uncomment and/or edit those parts as indicated. ... (comp.lang.python) |
|