I currently have Python 3.5 on my Windows machine. I\'m trying to install a Python package using the command "pip install" but as soon as I hit enter noth
"pip install"
@JBernardo 's comment worked for me. Thanks!
python -m pip install some_package_you_want
Try using pip programmatically like shown below.
pip
import pip pip.main(['install', 'the_package_you_want_installed'])