---------------------------------------------------------------------------------
Numba was installed - however, the error upon import and checking version in python remained. Maybe it could be due to the following:
1. Numpy was installed to your version (1.8.1) sucessfully, and python reported the correct version. However after installing the remaining packages in INSTALL_01.txt, python reported a different version: 1.9.0. We thought reinstalling numpy at that point to the correct version would not be a good idea.
2. We found a different scipy version (after having installed numpy - this was done automatically?):
In [4]: scipy.__version__
Out[4]: '0.9.0'
However, an attempt at installing the correct version of scipy, with
sudo pip install -U scipy=="0.14.0"
ended in an error. Therefore I left the default version: 0.9.0. Could this have caused further errors?
3. We were not able to install matplotlib. In the error it was suggested to install 'distribute'. After doing so, matplotlib was installed successfully. However could the installation of 'distribute' have caused other trouble?
4. In INSTALL_02.txt no option is given to choose a numba version. The default version (latest) is different from 0.11.1. Should this be specified somehow? It seems to be installed with a 'git' command - so how should the version be specified in this case?
Thanks in advance for your reply. Kind regards.
sudo apt-get install gfortran sudo apt-get install libblas-dev liblapack-dev
Install SciPy:
sudo pip install scipy=="0.14.0"
Regards:
Uwe