We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I want to ask how to install cntk in python3.8
The text was updated successfully, but these errors were encountered:
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.
Sorry, something went wrong.
No branches or pull requests
I want to ask how to install cntk in python3.8
The text was updated successfully, but these errors were encountered: