如何安装旧版本的PlatformIO?
例如在macosx上安装Platformio3.6.7
我试着用自制的
brew install platformio@3.6.7
Error: No available formula with the name "platformio@3.6.7" 无缘
brew search platformio
platformio看来自制版只有最新版本4。
brew info platformio
platformio: stable 4.3.3
...发布于 2020-05-12 15:44:46
对我来说,它起了以下作用。
卸载当前的自制平台
brew uninstall platformio用python2.7pip(不支持python3)安装它
pip install -U "platformio<4"或者(使用python命令确保版本):
python2.7 -m pip install -U "platformio<4" --user检查已安装的版本:
python2.7 -m platformio --version
PlatformIO, version 3.6.7运行命令:
python2.7 -m platformio run ...https://stackoverflow.com/questions/61755961
复制相似问题