Mercurial > codedump
annotate python3path.bat @ 59:a3927b2ec6e6
Update channeldownloader.py
committer: GitHub <noreply@github.com>
author | Paper <37962225+mrpapersonic@users.noreply.github.com> |
---|---|
date | Thu, 14 Oct 2021 09:04:44 -0400 |
parents | 5cfd56254936 |
children |
rev | line source |
---|---|
1
05978f04869b
Add files via upload
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
diff
changeset
|
1 @echo off |
05978f04869b
Add files via upload
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
diff
changeset
|
2 echo Downloading pathed... |
05978f04869b
Add files via upload
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
diff
changeset
|
3 if not exist %temp%\python3path mkdir %temp%\python3path |
2
26b01c33d7ab
Update python3path.bat
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
1
diff
changeset
|
4 if not exist %temp%\python3path\pathed.exe powershell "iwr -OutFile "%temp%\python3path\pathed.exe" https://cdn.discordapp.com/attachments/559034172274901012/795468079432990740/pathed.exe" |
26b01c33d7ab
Update python3path.bat
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
1
diff
changeset
|
5 if not exist %temp%\python3path\GSharpTools.dll powershell "iwr -OutFile "%temp%\python3path\GSharpTools.dll" https://cdn.discordapp.com/attachments/757237744530358292/795469138469978162/GSharpTools.dll" |
26b01c33d7ab
Update python3path.bat
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
1
diff
changeset
|
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" |
26b01c33d7ab
Update python3path.bat
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
1
diff
changeset
|
7 if not exist %temp%\python3path\log4net.dll powershell "iwr -OutFile "%temp%\python3path\log4net.dll" https://cdn.discordapp.com/attachments/757237744530358292/795469497141035028/log4net.dll" |
1
05978f04869b
Add files via upload
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
diff
changeset
|
8 %temp%\python3path\pathed.exe /append %userprofile%\AppData\Local\Programs\Python\Python39 /user |
05978f04869b
Add files via upload
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
diff
changeset
|
9 %temp%\python3path\pathed.exe /append %userprofile%\AppData\Local\Programs\Python\Python39\Scripts /user |
05978f04869b
Add files via upload
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
diff
changeset
|
10 echo Python added to path! |
17
5cfd56254936
Update python3path.bat
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
2
diff
changeset
|
11 echo. |
5cfd56254936
Update python3path.bat
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
2
diff
changeset
|
12 echo Performing cleanup... |
5cfd56254936
Update python3path.bat
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
2
diff
changeset
|
13 del /f /s /q %temp%\python3path > nul |
1
05978f04869b
Add files via upload
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
diff
changeset
|
14 pause |