I want to install few packages through python, i wrote the following code
def install_dependencies():
pip_install("colorama")
pip_install("console-menu")
install_dependencies()
When i run this, i am getting the following error:
NameError: name 'pip_install' is not defined
What is the package name available for pip_install