PlatformIO for CLion 创建工程时出现 gathering information问题解决方法

最近发现PlatformIO可以在CLion上使用了,所以也就想安装个试试,遇见了大概如下的问题
就是我想创建新的工程的时候,发现他一直在gathering info…
PlatformIO for CLion 创建工程时出现 gathering information问题解决方法
解决办法如下

1.首先确认是否安装了PlatformIO

安装Platform 并不是你再Clion上安装个插件就安装好了,你需要手动安装一下,这一点可以百度一下。可以参考这篇文章。https://zhuanlan.zhihu.com/p/138214988

2.其次检查位置选择的是否正确

在File->setting->languages & frameworks->platformIO检查自己是否选择了正确的文件

如下图所示找到PlatformIO安装的位置并选择正确的
PlatformIO for CLion 创建工程时出现 gathering information问题解决方法

3.要去下载正确的包

一直gathering的原因可能就是没有下载任何包,所以你没得选。
可以用下面命令来查看包,并下载。具体的更多信息可以查看PlatformIO的wiki
https://docs.platformio.org/

#查看所需要的包
pio boards xxxxx
#eg
pio boards arduino

#下载对应的包	
pio platform install xxxx

这样就可以看到了
PlatformIO for CLion 创建工程时出现 gathering information问题解决方法

上一篇:沁恒CH32F103C8T6(二): Linux PlatformIO环境配置, 示例运行和烧录


下一篇:学过Arduino如何快速入门STM32