add rt-studio-deploy.py脚本
This commit is contained in:
parent
c44321be88
commit
5976266bde
|
@ -0,0 +1,5 @@
|
|||
import shutil
|
||||
import os
|
||||
|
||||
shutil.rmtree(os.path.join('..', 'tools', 'Python27_32'))
|
||||
shutil.rmtree(os.path.join('..', 'tools', 'gnu_gcc'))
|
|
@ -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中。
|
||||
|
|
Loading…
Reference in New Issue