From e65f59ecaaa776159d8ec6fe5bc98e3b337a2b5d Mon Sep 17 00:00:00 2001 From: Leo Fan Date: Sun, 12 Jul 2020 14:14:15 +0800 Subject: [PATCH] correct pytho to python --- content/chapter3/3.1-chinese.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/chapter3/3.1-chinese.md b/content/chapter3/3.1-chinese.md index acd4832..d1b3ccb 100644 --- a/content/chapter3/3.1-chinese.md +++ b/content/chapter3/3.1-chinese.md @@ -91,7 +91,7 @@ find_package(PythonInterp REQUIRED) $ cmake -D PYTHON_EXECUTABLE=/custom/location/python .. ``` -这将指定非标准`/custom/location/pytho`安装目录中的Python可执行文件。 +这将指定非标准`/custom/location/python`安装目录中的Python可执行文件。 **NOTE**:*每个包都是不同的,`Find.cmake`模块试图提供统一的检测接口。当CMake无法找到模块包时,我们建议您阅读相应检测模块的文档,以了解如何正确地使用CMake模块。可以在终端中直接浏览文档,本例中可使用`cmake --help-module FindPythonInterp`查看。*