From 8105799c7b858a5bb9dc3176807e551f2922e3d6 Mon Sep 17 00:00:00 2001 From: Ryan_Huang <44900829+DrRyanHuang@users.noreply.github.com> Date: Mon, 27 Jun 2022 16:21:25 +0800 Subject: [PATCH] ' -> " same with https://github.com/open-mmlab/mmdeploy/pull/654 --- docs/zh_cn/01-how-to-build/linux-x86_64.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/zh_cn/01-how-to-build/linux-x86_64.md b/docs/zh_cn/01-how-to-build/linux-x86_64.md index 36ce48f0c0..fd10572fbc 100644 --- a/docs/zh_cn/01-how-to-build/linux-x86_64.md +++ b/docs/zh_cn/01-how-to-build/linux-x86_64.md @@ -245,7 +245,7 @@ export LD_LIBRARY_PATH=$Torch_DIR/lib:$LD_LIBRARY_PATH ```bash echo '# set env for onnxruntime' >> ~/.bashrc echo "export ONNXRUNTIME_DIR=${ONNXRUNTIME_DIR}" >> ~/.bashrc -echo 'export LD_LIBRARY_PATH=$ONNXRUNTIME_DIR/lib:$LD_LIBRARY_PATH' >> ~/.bashrc +echo "export LD_LIBRARY_PATH=$ONNXRUNTIME_DIR/lib:$LD_LIBRARY_PATH" >> ~/.bashrc source ~/.bashrc ```