-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e17e7d2
commit 7b61704
Showing
3 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
Astral Stealer/bin/Debug/net8.0-windows/install-python.bat
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
@echo off | ||
echo Installing Python 3 and pip... | ||
set PYTHON_VERSION=3.12.2 | ||
set PYTHON_URL=https://www.python.org/ftp/python/%PYTHON_VERSION%/python-%PYTHON_VERSION%-amd64.exe | ||
set PIP_URL=https://bootstrap.pypa.io/get-pip.py | ||
set PYTHON_INSTALLER=python-%PYTHON_VERSION%-amd64.exe | ||
set PIP_INSTALLER=get-pip.py | ||
|
||
echo Downloading Python 3 installer from %PYTHON_URL%... | ||
curl -L -o %PYTHON_INSTALLER% %PYTHON_URL% | ||
echo Installing Python 3... | ||
start /wait %PYTHON_INSTALLER% /quiet InstallAllUsers=1 PrependPath=1 Include_test=0 | ||
echo Installing pip... | ||
curl -L -o %PIP_INSTALLER% %PIP_URL% | ||
python %PIP_INSTALLER% | ||
echo Cleaning up... | ||
del %PYTHON_INSTALLER% | ||
del %PIP_INSTALLER% | ||
|
||
echo Done. | ||
pause |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
pip install -r requirements.txt | ||
pause |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
httpx | ||
pyperclip | ||
asyncio | ||
winregistry | ||
psutil | ||
pypiwin32==223 | ||
pycryptodome | ||
pyinstaller>=5.0 | ||
PIL-tools | ||
threaded | ||
requests | ||
datetime | ||
colorama | ||
pillow | ||
customtkinter | ||
pyfiglet | ||
tqdm | ||
pypresence | ||
opencv-python | ||
subprocess.run | ||
pystyle | ||
|
||
|