Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Anaconda running python: cannot run mkl without a license

I'm using Continuum's Anaconda Spyder for python. All of a sudden it's giving me this error, although it's supposed to be free:

Vendor:  Continuum Analytics, Inc.
Package: mkl
Message: trial mode EXPIRED 14 days ago

    You cannot run mkl without a license any longer.
    A license can be purchased it at: http://continuum.io
    We are sorry for any inconveniences.

    SHUTTING DOWN PYTHON INTERPRETER

Any idea what the problem might be? I'm using it on Windows 64-bit. I've been using it fine for months. I just got back to it now after some weeks and now it's saying it's expired, but there never was a license as far as I can remember.

like image 387
user961627 Avatar asked Aug 08 '14 12:08

user961627


People also ask

What is MKL in Anaconda?

Description. Intel Math Kernel Library is a BLAS implementation tuned for high performance on Intel CPUs. This package is a repackaged set of binaries obtained directly from Intel\'s anaconda.org channel.

What is MKL service Python?

mkl-service - Python package for run-time control of Intel(R) Math Kernel Library.

Do you wish the installer to initialize Miniconda3 by running conda init?

The installer prompts “Do you wish the installer to initialize Miniconda3 by running conda init ?” We recommend “yes”. If you enter “no”, then conda will not modify your shell scripts at all.


1 Answers

There is a free trial that starts when you conda install mkl. If you want to remove it, use conda remove --features mkl.

like image 189
asmeurer Avatar answered Sep 27 '22 17:09

asmeurer