mirror of https://github.com/Jittor/Jittor
add python windows install recommend and ssl polish
This commit is contained in:
parent
752a5c62ed
commit
121c633aa1
|
@ -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及以上。
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue