怪奇物语

怪奇物语

首页 新随笔 联系 管理

第一步

在系统变量的Path中,添加:%WherePython% 和 %WherePython%\Scripts\ 两组值,系统根据这个寻找python内容

第二部

@echo off
%1 mshta vbscript:CreateObject("Shell.Application").ShellExecute("cmd.exe","/c %~s0 ::","","runas",1)(window.close)&&exit
choice /c 123 /m "Python37->Press 1,    Python39->Press 2,   Python310->Press 3"
if errorlevel 3 goto Python310
if errorlevel 2 goto Python39
if errorlevel 1 goto Python37
 

:Python37
setx WherePython D:\Python37 /M
goto end

:Python39
setx WherePython C:\ProgramData\Anaconda3 /M
goto end

:Python310
setx WherePython D:\Python310 /M
goto end
 
:end
echo GoodBye

原始链接

http://t.csdn.cn/r4x0f

posted on 2022-09-22 16:58  超级无敌美少男战士  阅读(62)  评论(0)    收藏  举报