Automatic Python Module Installer (Batch)

Open the script type the name of the module that you want wait a second and done

Example


Code

@echo off
title Module Installer
cd C:\Python27\Scripts
SET /P module= 
IF /I "%module%" NEQ "%module%" GOTO END
pip install "%module%"
pause
2 Likes

this is incredibly pointless, no offence but doesn’t it do the same thing as pip install [name]?
also why did you make this in batch and not python?

its not pointless if you ar lazy typing the command

Why not copy & paste it, then?

I want everything automatic :stuck_out_tongue: