[Python/Library] Library Installation Command Archive
This post is written by YoungJ-Baek
1. Preface
There are many times to reinstall open libraries while using Python. Every time, I have used to search same keyword repeatively. So, in this post, I am going to gather all of them and add whenever new thing appears. You can use search operation(ctrl + f
) for quick approach.
2. Installation
You can use pip
command instead of pip3
.
- OpenCV [Main modules packages]
$ pip3 install opencv-python
- OpenCV [Full package]
$ pip install opencv-contrib-python
- Matplotlib
$ pip3 install matplotlib
- PIL
$ pip3 install pillow
- IMAGE
$ pip3 install image
- autopep8
$ pip3 install autopep8
Leave a comment