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

2024.2 install changes for conda forge #2388

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Navigate to the Intel® AI Reference models source directory. By default, it is
#### Install Jupyter Notebook

```
conda install jupyter nb_conda_kernels
conda install -c conda-forge jupyter nb_conda_kernels
```

#### Open Jupyter Notebook
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"steps": [
"source /root/intel/oneapi/intelpython/bin/activate",
"conda activate tensorflow",
"conda install -y jupyter",
"conda install -c conda-forge -y jupyter",
"jupyter nbconvert --execute --to notebook IntelTensorFlow_Transformer_AMX_bfloat16_MixedPrecision.ipynb"
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
{
"env": ["source /opt/intel/oneapi/setvars.sh --force",
"conda activate tensorflow",
"conda install -n tensorflow python-flatbuffers -y",
"conda install -n tensorflow -c intel neural-compressor -y",
"conda install -n tensorflow -c conda-forge python-flatbuffers -y",
"conda install -n tensorflow -c https://software.repos.intel.com/python/conda/ -c conda-forge neural-compressor -y",
"conda install -n tensorflow -y",
"pip install jupyter ipykernel",
"python -m ipykernel install --user --name=tensorflow"
Expand Down