piplus

Python Package Installer Plus


License
BSD-3-Clause
Install
pip install piplus==0.1.1

Documentation

piplus

Python Package Installer Plus

Installing

Install and update using pip:

pip install -U piplus

A Simple Example

from piplus import piplus

# update pip
piplus().update()

# update flask
piplus('flask').update()

# update requires
piplus('flask').requires().update()

# update flask and requires
piplus('flask').update().requires().update()