add python windows install recommend and ssl polish

This commit is contained in:
Dun Liang 2021-09-30 16:46:40 +08:00
parent 752a5c62ed
commit 121c633aa1
4 changed files with 9 additions and 4 deletions

View File

@ -97,7 +97,7 @@ Jittor 支持**Linux**(e.g. Ubuntu/CentOS/Arch), **macOS**,**Windows** 其中
* GPU 加速库可选cudnn-dev (cudnn开发版, 推荐使用tar安装方法[参考链接](https://docs.nvidia.com/deeplearning/cudnn/install-guide/index.html#installlinux-tar))
**Windows**对环境的要求为:
* Python版本 >= 3.8
* Python版本 >= 3.8(建议从Python官网安装<https://www.python.org/downloads/windows/>)
* x86_64处理器
* Windows 10及以上。

View File

@ -107,7 +107,7 @@ Jittor environment requirements:
**Windows** requirements atr:
* Python: version >= 3.8
* Python: version >= 3.8(recommend install from <https://www.python.org/downloads/windows/>)
* x86_64 CPU processor
* Windows 10 or above

View File

@ -121,7 +121,7 @@ Jittor 支持**Linux**(e.g. Ubuntu/CentOS/Arch), **macOS**,**Windows** 其中
* GPU 加速库可选cudnn-dev (cudnn开发版, 推荐使用tar安装方法[参考链接](https://docs.nvidia.com/deeplearning/cudnn/install-guide/index.html#installlinux-tar))
**Windows**对环境的要求为:
* Python版本 >= 3.8
* Python版本 >= 3.8(建议从Python官网安装<https://www.python.org/downloads/windows/>)
* x86_64处理器
* Windows 10及以上。
@ -147,7 +147,7 @@ Jittor environment requirements:
**Windows** requirements atr:
* Python: version >= 3.8
* Python: version >= 3.8(recommend install from <https://www.python.org/downloads/windows/>)
* x86_64 CPU processor
* Windows 10 or above

View File

@ -442,6 +442,11 @@ _py3_extension_suffix = None
if os.name == 'nt':
from pathlib import Path
try:
import ssl
ssl._create_default_https_context = ssl._create_unverified_context
except:
pass
if check_msvc_install:
if not os.path.isfile(cc_path):
from jittor_utils import install_msvc