Last Updated: September 29, 2021
·
730
· poseidonsg

How to install python package on windows?

How to install python package on windows?

easyinstall libraryname

pip install library_name

pip uninstall library_name

to uninstall a python package

However, often pip install fails on windows. In that case you have no other option but to install from source.

Another option is look for binaries

http://www.lfd.uci.edu/~gohlke/pythonlibs/

Simply download the file and run the following command

pip install filename

You should also check out stackoverflow for related questions. Because if the package is even little popular then it is very likely others might have also faced the same problem. Download the stackoverflow app (http://www.apkmonk.com/download-stack-exchange-1-0-75-apk/) and look for related questions. Stack overflow is an awesome resource for finding solutions to errors you face while coding.