How to get list of installed python packages

Install pip if needed

yum install python-pip

Find your package as below:

pip list |grep -i BeautifulSoup4

beautifulsoup4 (4.8.2)

or

pip freeze |grep -i BeautifulSoup4

beautifulsoup4==4.9.3

Similar Posts:

Leave a Reply

Your email address will not be published. Required fields are marked *