In Windows, I have a Python 3.6 script that uses the cvxopt
package which needs numpy + MKL for it to work. numpy + MKL was successfully installed using the prebuilt binaries here.
Problem: Now the script also needs to be run in Ubuntu 16.04, but pip install numpy
installs the version of numpy without MKL.
How can I install numpy+MKL on a Linux system to be able to use the cvxopt
package?