Custom Search

Saturday, May 11, 2019

Python Find which version of package is installed with pip

1)
pip show requests

2)
pip list | grep requests

3)
python
import requests
requests.__version__


No comments:

Post a Comment