pip安装,error没有找到对应版本

应该是您的pip版本太低了
建议:
python3 -m pip install --upgrade pip
python3 -m pip install megengine -f https://megengine.org.cn/whl/mge.html

另外这个提示,已提MR: https://github.com/MegEngine/MegEngine/pull/181

绝对不是,我更新完pip后出现有这个问题的

你的pip 是pip2还是pip3, 看不出来, 另外感觉你的pip 路径好奇怪
也看不出来你的python 版本到底是多少, 目前megengine只提供3.5–3.8的安装包,3.9需要自己进行编译
不防直接下载官方的python exe 进行安装, 安装后, pip会自带, 直接用-m的方式就行,即可

python3 -m pip install --upgrade pip
python3 -m pip install megengine -f https://megengine.org.cn/whl/mge.html
python官方exe下载地址 
https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe
https://www.python.org/ftp/python/3.5.4/python-3.5.4-amd64.exe
https://www.python.org/ftp/python/3.6.8/python-3.6.8-amd64.exe
https://www.python.org/ftp/python/3.7.7/python-3.7.7-amd64.exe
https://www.python.org/ftp/python/3.8.3/python-3.8.3-amd64.exe

如果你不想重新安装你的python3,针对你这种情况:

好的,谢谢,我试一下