Mercurial > codedump
annotate python3path.bat @ 14:44a37d846d80
make tenormoment.bat actually functional
committer: GitHub <noreply@github.com>
author | Paper <37962225+mrpapersonic@users.noreply.github.com> |
---|---|
date | Fri, 26 Mar 2021 00:10:57 -0400 |
parents | 26b01c33d7ab |
children | 5cfd56254936 |
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! |
05978f04869b
Add files via upload
Paper <37962225+mrpapersonic@users.noreply.github.com>
parents:
diff
changeset
|
11 pause |