How to install a development version on Fedora
Install packages
- Login with super cow powers
Retrieve sources
svn checkout https://svn.openturns.org/openturns/tags/openturns-0.13.2 openturns
cd openturns
Build
- Launch bootstraping
./bootstrap
- Create a build directory
mkdir build
cd build
Try it
export PYTHONPATH=$PWD`python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))" | sed 's/usr/install/g'`
python
Python 2.6.2 (r262:71600, Aug 21 2009, 12:23:57)
[GCC 4.4.1 20090818 (Red Hat 4.4.1-6)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from openturns import *
Welcome to OpenTURNS version 0.13.2-based-devel
>>> u=Normal()
>>> u.getRealization()
class=NumericalPoint name=Unnamed dimension=1 values=[0.608202]
>>>