Flutter官网 <https://flutter.io>
Flutter中文官网 <https://flutterchina.club/get-started/install/>
这里就将我搭建时遇到的坑记录下来,其它步骤直接跟着文档走就可以了
执行flutter doctor查看是否需要安装其它依赖项来完成安装:
$ flutter doctor
显示如下错误
这里需要注意的一个错误是:Missing Xcode dependency: Python module
“six”.这个不解决是无法将Flutter程序安装到iOS模拟器上的。(其它的可以先不用管)
根据提示执行如下命令
$ pip install six
报如下错误:
Could not fetch URL https://pypi.python.org/simple/six/
<https://pypi.python.org/simple/six/>: There was a problem confirming the ssl
certificate: [SSL: TLSV1_ALERT_PROTOCOL_VERSION] tlsv1 alert protocol version
(_ssl.c:661) - skipping
Could not find a version that satisfies the requirement six (from versions: )
No matching distribution found for six
解决办法,执行如下命令
$ curl https://bootstrap.pypa.io/get-pip.py | python
原因是因为pip TLS证书错误,具体可以查看这篇博客
使用pip安装包提示TLS证书错误解决办法
<https://blog.csdn.net/nunchakushuang/article/details/80049528>
最后再次执行如下命令即可安装
$ pip install six
热门工具 换一换