fix(samples): Update KFP version in sample to fix backslash recognization issue. (#5140)

* Add escape character for writer.write() call in sample

Backslash needs to be escaped while writing `\n` to a file.

* Change to upgrade KFP version in sample
This commit is contained in:
James Liu 2021-02-16 16:04:29 -08:00 committed by GitHub
parent 1f32e90ecd
commit d902caeac4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@
"outputs": [],
"source": [
"# Install Kubeflow Pipelines SDK. Add the --user argument if you get permission errors.\n",
"!PIP_DISABLE_PIP_VERSION_CHECK=1 python3 -m pip install 'kfp>=0.1.32.2' --quiet --user"
"!PIP_DISABLE_PIP_VERSION_CHECK=1 python3 -m pip install 'kfp>=1.4.0' --quiet --user"
]
},
{
@ -402,4 +402,4 @@
},
"nbformat": 4,
"nbformat_minor": 2
}
}