pyautoinstall

Magically install modules just by importing them!!


Keywords
auto, install, import, pip
License
MIT
Install
pip install pyautoinstall==0.0.1

Documentation

PyAutoInstall

Magically install modules just by importing them!!

📝 Description

This is a Work-In-Progress Library which will change your way of installing packages forever.

🤯 Disclaimer

(This project is still in unstable planning stage)

🔥 Getting Started

  • ⬇️ Installation

    While it would be nice to install pyautoinstall just by importing it, that just isn't the case.

    • Via pip
      pip install pyautoinstall
      
  • Usage

    • Without pyautoinstall
      >>> import requests
      Traceback (most recent call last):
        File "<stdin>", line 1, in <module>
      ModuleNotFoundError: No module named 'requests'
    • With it
      >>> import pyautoinstall
      >>> import requests
      Should I install requests? (y/n) - y
      Successfully installed requests!!
      >>> requests.get('https://pypi.org/project/pyautoinstall/')
      <Response [200]>