pip-cmd
pip [option]
Syntax: pip install
Install pandas package:
pip install pandas;
When install multiple packages, use space to seperate:
pip install test pandas;
Syntax: pip uninstall Uninstall package:
pip uninstall pandas;
Uninstall all packages:
pip uninstall *;
Syntax: pip -chk
Asks for permission to install, otherwise reports already installed
pip -chk pandas;
Syntax: pip -chk1
Shows message if not installed, otherwise does nothing
pip -chk1 pandas;
Check with package version
pip -chk emd==0.4.0; //or pip -chk1 emd==0.4.0;