Luna : Web Dev and Tech Support

Web Development and Technical Support

Installing Multiple Python Packages At Once – With PIP — November 3, 2015

Installing Multiple Python Packages At Once – With PIP

I’m going through a tutorial right now that wants me to install about 10 packages & lists them line by line – great for clarity, but I’d rather not retype pip install 10 times…

Apparently you can just: pip install package1 package2 package3 package4 etc & install to your heart’s content (though if something throws an Error, it will stop the whole process)