add rt-studio-deploy.py脚本

This commit is contained in:
Meco Man 2022-11-06 22:04:48 -05:00
parent c44321be88
commit 5976266bde
2 changed files with 16 additions and 1 deletions

View File

@ -0,0 +1,5 @@
import shutil
import os
shutil.rmtree(os.path.join('..', 'tools', 'Python27_32'))
shutil.rmtree(os.path.join('..', 'tools', 'gnu_gcc'))

View File

@ -1,4 +1,14 @@
# 维护注意事项
## 如何升级Python版本
电脑上安装一个Python2.7环境同时使用Pip安装requests模块,pip install requests, pip install Scons把安装在C盘下的Python27文件夹复制到env下面替换原来的同时要把C:\Windows\System32\python27.dll下的python27.dll也复制到python27文件夹下就可以了
电脑上安装一个Python2.7环境同时使用Pip安装requests模块,pip install requests, pip install Scons把安装在C盘下的Python27文件夹复制到env下面替换原来的同时要把C:\Windows\System32\python27.dll下的python27.dll也复制到python27文件夹下就可以了。目前Env已经升级到了Python2的最终版本后续无需再升级了。
## 部署到RT-Thread Studio
在当前`maintain`目录下执行执行:
```
python rt-studio-deploy.py
```
即可将在Studio中用不到的Env部分文件夹删除此后该份Env即可直接覆盖到Studio的Env中。