-1

Anaconda version: 3 4.1.1

Python version: 3 5.2

Windows version: 8.1 x64

I've installed Python-only CNTK v2.6 succesfully via PyPI and tested with:

python -c "import cntk; print(cntk.__version__)"

After that there is an unsupported error:

C:\Anaconda3\lib\site-packages\cntk\cntk_py_init.py:32: UserWarning: Unsupported
Windows version (8.1). CNTK supports Windows 10 and above, only.
warnings.warn('Unsupported Windows version (%s). CNTK supports Windows 10 and above, only.' % __my_distro_ver__) 2.6

Is there any way to run CNTK on windows 8.1?

Community
  • 1
  • 1
ATES
  • 281
  • 1
  • 11
  • 29

1 Answers1

0

You can disable the UserWarning. Either that or you build from source.

To disable warnings:

import warnings
warnings.filterwarnings('ignore')
snowflake
  • 902
  • 1
  • 6
  • 18