Reputation: 1
I wanted to use cntk for anaconda,but on microsoft there is only link provided uptil version 3.5. Is there any othetr way around that I can use cntk without downgrading python?
Upvotes: 0
Views: 333
Reputation: 172
create a environment and install python 3.5 or 3.6 to use cntk
conda create -n env_name python=3.5(version want to use)
after creating activate env
in windows conda activate env_name
in linux source activate env_name
after your activating install cntk using pip install cntk
Upvotes: 0