PyMongo 환경 설정

PyMongo 설치는 명령어를 통해서 쉽게 설치가 가능하다.

pip을 통해서 설치가 가능하며 Python3 기준으로 작성하였다.

$ sudo apt install python3-pip # install pip3
$ pip3 install pymongo # install pymongo
$ python3 -c "from pymongo import MongoClient"
# check the pymongo is successfully installed

Python에서 동작을 하기 때문에 원한다면 Jupyter notebook 이나 pycharm에서도 그대로 사용가능하다. 다른 editor 설치는 생략하겠다.

Last updated