Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

how to install in python3.8 #3865

Open
Ctu-SiTuShenPeng opened this issue May 19, 2022 · 1 comment
Open

how to install in python3.8 #3865

Ctu-SiTuShenPeng opened this issue May 19, 2022 · 1 comment

Comments

@Ctu-SiTuShenPeng
Copy link

I want to ask how to install cntk in python3.8

@anujkumar8076
Copy link

Install Anaconda (if you don't have it already):

Download and install Anaconda from Anaconda's official website.
Create a new conda environment:

bash
conda create -n cntk-env python=3.8

Activate the environment:
bash
conda activate cntk-env

Install CNTK:
bash

pip install https://cntk.ai/PythonWheel/CPU-Only/cntk-2.7-cp38-cp38-win_amd64.whl # for Windows
pip install https://cntk.ai/PythonWheel/CPU-Only/cntk-2.7-cp38-cp38-linux_x86_64.whl # for Linux

Verify the installation:

import cntk
print(cntk.version)

This will set up CNTK in a Python 3.8 environment using Anaconda.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants