====== Python Discussion Page ====== ===== Introduction ===== SciPy is open-source software for mathematics, science, and engineering. It is also the name of a very popular conference on scientific programming with Python. The core library is NumPy which provides convenient and fast N-dimensional array manipulation. The SciPy library is built to work with NumPy arrays, and provides many user-friendly and efficient numerical routines such as routines for numerical integration and optimization. Together, they run on all popular operating systems, are quick to install, and are free of charge. NumPy and SciPy are easy to use, but powerful enough to be depended upon by some of the world's leading scientists and engineers. If you need to manipulate numbers on a computer and display or publish the results, give SciPy a try! Why not have try right now? [[http://www.scipy.org/Cookbook|Here]] are lots of wonderful examples. ===== Newsgroup ===== cuhk.cse.csc5250 ===== Step-By-Step Guide ===== === Here are the install guideline in the platform of FC 5: === == First, install numpy == - yum install numpy - yum install lapack-devel blas-devel == Second, install scipy == - cd .../scipy-x.x.x - python setup.py install == Third, install matplotlib == - python setup.py build - python setup.py install === Here are the testing methods to check whether the modules are ready: === - from numpy import * (check numpy) - from scipy import * (check scipy) - import pylab (check matplotlib) ===== For Mac OS X ===== - [[http://www.scipy.org/Installing_SciPy/Mac_OS_X|Installing SciPy/Mac OS X]] - [[http://www.scipy.org/Installing_SciPy|Installing SciPy]] - [[http://www.scipy.org/NumPy]] - [[http://www.scipy.org/SciPy]] ===== Other Resources ===== - [[http://www.scipy.org/Mailing_Lists|Mailing list]] for SciPy: Here you could report bugs, seek help, contribute to SciPy, etc - [[http://sourceforge.net/mail/?group_id=80706|Mailing list]] for matplotlib: Here is a community for this project - SourceForge download site for [[http://sourceforge.net/project/showfiles.php?group_id=1369&package_id=175103|numpy]] - SourceForge download site for [[http://sourceforge.net/project/showfiles.php?group_id=27747|SciPy]] - SourceForge download site for [[http://sourceforge.net/projects/matplotlib|matplotlib]]