Easy Python Package Installer is an improvement over pip
installer API.
It provide developers with an easy to use commandline interpreter interface
which allows them to search python packages and install them instantly.
- Clone the project repository
- Enter the repo directory
- Get latest pip version in your venv by using
pip install --upgrade pip
command. - Run
python3 easy-ppi
to get into the interpreter. - If this is the first time you're using
easy-ppi
, runrefreshdb
command.refreshdb
command populates thedb
with fresh list of python packages. You should also consider running this command if you need to fetch fresh list of packages. - At the interpreter, you can type any package name and press
Tab
for autocomplete feature. - Once you find the required package, type its name and press
install package_name
to install package - Type
help
for the other commands
Please feel free to report any bugs, issues or feature requests. You can also consider sending Pull Request for any of these.