Mercurial > codedump
comparison python3path.bat @ 2:26b01c33d7ab
Update python3path.bat
committer: GitHub <noreply@github.com>
author | Paper <37962225+mrpapersonic@users.noreply.github.com> |
---|---|
date | Mon, 04 Jan 2021 14:02:35 -0500 |
parents | 05978f04869b |
children | 5cfd56254936 |
comparison
equal
deleted
inserted
replaced
1:05978f04869b | 2:26b01c33d7ab |
---|---|
1 @echo off | 1 @echo off |
2 echo Downloading pathed... | 2 echo Downloading pathed... |
3 if not exist %temp%\python3path mkdir %temp%\python3path | 3 if not exist %temp%\python3path mkdir %temp%\python3path |
4 powershell "iwr -OutFile "%temp%\python3path\pathed.exe" https://cdn.discordapp.com/attachments/559034172274901012/795468079432990740/pathed.exe" | 4 if not exist %temp%\python3path\pathed.exe powershell "iwr -OutFile "%temp%\python3path\pathed.exe" https://cdn.discordapp.com/attachments/559034172274901012/795468079432990740/pathed.exe" |
5 powershell "iwr -OutFile "%temp%\python3path\GSharpTools.dll" https://cdn.discordapp.com/attachments/757237744530358292/795469138469978162/GSharpTools.dll" | 5 if not exist %temp%\python3path\GSharpTools.dll powershell "iwr -OutFile "%temp%\python3path\GSharpTools.dll" https://cdn.discordapp.com/attachments/757237744530358292/795469138469978162/GSharpTools.dll" |
6 powershell "iwr -OutFile "%temp%\python3path\GSharpTools.WPF.dll" https://cdn.discordapp.com/attachments/757237744530358292/795469255575076914/GSharpTools.WPF.dll" | 6 if not exist %temp%\python3path\GSharpTools.WPF.dll powershell "iwr -OutFile "%temp%\python3path\GSharpTools.WPF.dll" https://cdn.discordapp.com/attachments/757237744530358292/795469255575076914/GSharpTools.WPF.dll" |
7 powershell "iwr -OutFile "%temp%\python3path\log4net.dll" https://cdn.discordapp.com/attachments/757237744530358292/795469497141035028/log4net.dll" | 7 if not exist %temp%\python3path\log4net.dll powershell "iwr -OutFile "%temp%\python3path\log4net.dll" https://cdn.discordapp.com/attachments/757237744530358292/795469497141035028/log4net.dll" |
8 %temp%\python3path\pathed.exe /append %userprofile%\AppData\Local\Programs\Python\Python39 /user | 8 %temp%\python3path\pathed.exe /append %userprofile%\AppData\Local\Programs\Python\Python39 /user |
9 %temp%\python3path\pathed.exe /append %userprofile%\AppData\Local\Programs\Python\Python39\Scripts /user | 9 %temp%\python3path\pathed.exe /append %userprofile%\AppData\Local\Programs\Python\Python39\Scripts /user |
10 echo Python added to path! | 10 echo Python added to path! |
11 pause | 11 pause |