install python-dev hint

This commit is contained in:
Dun Liang 2021-02-01 16:34:24 +08:00
parent 4ec9ace622
commit 5b8d2fe13c
2 changed files with 3 additions and 2 deletions

View File

@ -8,7 +8,7 @@
# This file is subject to the terms and conditions defined in
# file 'LICENSE.txt', which is part of this source code package.
# ***************************************************************
__version__ = '1.2.2.26'
__version__ = '1.2.2.27'
from . import lock
with lock.lock_scope():
ori_int = int

View File

@ -300,4 +300,5 @@ for py3_config_path in py3_config_paths:
else:
raise RuntimeError(f"python3.{sys.version_info.minor}-config "
"not found in {py3_config_paths}, please specify "
"enviroment variable 'python_config_path'")
"enviroment variable 'python_config_path',"
" or apt install python3.{sys.version_info.minor}-dev")