From 26d7965422382c462e5f6f6dd68c7ca3b607af85 Mon Sep 17 00:00:00 2001 From: Neocky Date: Wed, 26 May 2021 20:57:25 +0200 Subject: [PATCH] Added installer.bat Changes: - added installer.bat file which automaticcally will install the needed python packages to run pluGET --- installer.bat | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 installer.bat diff --git a/installer.bat b/installer.bat new file mode 100644 index 0000000..c2e20b9 --- /dev/null +++ b/installer.bat @@ -0,0 +1,34 @@ +@ECHO OFF + +cd /d %~dp0 + +Echo ___ ___ ___ ___ ___ ___ +Echo /\ \ /\__\ /\__\ /\ \ /\ \ /\ \ +Echo /::\ \ /:/ / /:/ / /::\ \ /::\ \ \:\ \ +Echo /:/\:\ \ /:/ / /:/ / /:/\:\ \ /:/\:\ \ \:\ \ +Echo /::\~\:\ \ /:/ / /:/ / ___ /:/ \:\ \ /::\~\:\ \ /::\ \ +Echo /:/\:\ \:\__\ /:/__/ /:/__/ /\__\ /:/__/_\:\__\ /:/\:\ \:\__\ /:/\:\__\ +Echo \/__\:\/:/ / \:\ \ \:\ \ /:/ / \:\ /\ \/__/ \:\~\:\ \/__/ /:/ \/__/ +Echo \::/ / \:\ \ \:\ /:/ / \:\ \:\__\ \:\ \:\__\ /:/ / +Echo \/__/ \:\ \ \:\/:/ / \:\/:/ / \:\ \/__/ \/__/ +Echo \:\__\ \::/ / \::/ / \:\__\ +Echo \/__/ \/__/ \/__/ \/__/ +Echo ` +Echo ` +Echo ------------------------------------ +Echo [By Neocky] +Echo https://github.com/Neocky/pluGET +Echo pluGET-Installer +Echo ------------------------------------ +Echo ` +Echo ---------------------------------------------------------------------------------- +Echo Installing Python packages and dependencies... + +py -m pip install -r requirements.txt + +Echo ` +Echo Launching pluGET... + +launcher.bat + +exit