Installing Python Packages thru PIP
Once you download and install the latest version of Python, the latest version of pip gets installed too.
I could install multiple different packages using the below commands in Terminal (on Mac)
pip3 install numpy
pip3 install scipy
pip3 install matplotlib
pip3 install pandas
pip3 install openpyxl
pip3 install opencv-python
pip3 install --upgrade scikit-image
pip3 install --upgrade imutils
I could install multiple different packages using the below commands in Terminal (on Mac)
pip3 install numpy
pip3 install scipy
pip3 install matplotlib
pip3 install pandas
pip3 install openpyxl
pip3 install opencv-python
pip3 install --upgrade scikit-image
pip3 install --upgrade imutils
Comments
Post a Comment