Python module for using pip from Python scripts
To install the module, clone this repository
git clone https://github.com/PiciAkk/pip-module
- Go to the cloned folder
cd pip-module
- Make a new Python script
touch main.py
- Write something in that script
from pip-module import pip
pip().install("packageName") # install the package with the name `packageName`
pip().uninstall("packageName") # uninstall the package with the name `packageName`
pip().runCommand("command", "packageName") # run the command `command`, with the name `packageName`
# more functions coming soon