1

Vineeth Sai indicated in this that with the following code:

pip install cntk 

the problem is solved. However, I am getting the error shown in attached image:

enter image description here

Ethan
  • 1,657
  • 9
  • 25
  • 39

2 Answers2

0

Keeping your latest edit in mind, the error in your screenshot is actually just a recommendation to upgrade pip. As suggested, please run pip install --upgrade pip, and it shall upgrade pip package in your environment and shall not re-appear unless a new version of pip get released later on.

Random Nerd
  • 404
  • 2
  • 13
0

Try with:

sudo pip install cntk

or:

sudo su [type admin password]
pip install cntk  
fuwiak
  • 1,373
  • 8
  • 14
  • 26