Working With MongoDB & Python Using PyMongo and Pandas

Install MongoDB Community Server in Windows10

In this blog we will install MongoDB Community Server.

Download

We have to download from below link:

https://www.mongodb.com/try/download/community

I am using windows system, so platform is Windows and package msi. Then click on Download.

Save "mongodb-windows-x86_64-5.0.6-signed.msi" file in your local system. Then right click on "mongodb-windows-x86_64-5.0.6-signed.msi" installer and click on install. Next screen will show like below then click on "Next".

Accept the terms in the License Agreement and then click "Next".

Next screen will show like below, click on "Complete"

Let default "Data Directory" and "Log Directory" and click on "Next".

Click on "Next".

Click on "Install".

It will take some time to install.

Next screen will show like:

Installation completed. Click on "Finish".

Next Screen will show like below to connect MondoDB compass.

If you want to use MongoDB Compass, then click on "Start Using Compass" or you can close this window.

Make the MongoDB available in your PATH

Open "Edit the system environment variable" -> Advanced -> Environment Variables

Click on Path -> Edit

Copy the path of installed MongoDB Server("C:\Program Files\MongoDB\Server\5.0\bin").

Click on New -> paste the installed MongoDB Tools path. -> Click on "OK".

Check the installed MongoDB version

Open the command prompt and type "mongod --version". You should get output like below:

Check MongoDB Shell

Type "mongo" in command prompt.

Show databases in Mongo Shell

Type "show dbs"

We can see all databases in mongo shell. To exit mongo shell press Ctrl + c.

We can successfully installed MongoDB community server in windows10. That’s it in this blog. Thanks for reading.

Machine Learning

  1. Deal Banking Marketing Campaign Dataset With Machine Learning

TensorFlow

  1. Difference Between Scalar, Vector, Matrix and Tensor
  2. TensorFlow Deep Learning Model With IRIS Dataset
  3. Sequence to Sequence Learning With Neural Networks To Perform Number Addition
  4. Image Classification Model MobileNet V2 from TensorFlow Hub
  5. Step by Step Intent Recognition With BERT
  6. Sentiment Analysis for Hotel Reviews With NLTK and Keras
  7. Simple Sequence Prediction With LSTM
  8. Image Classification With ResNet50 Model
  9. Predict Amazon Inc Stock Price with Machine Learning
  10. Predict Diabetes With Machine Learning Algorithms
  11. TensorFlow Build Custom Convolutional Neural Network With MNIST Dataset
  12. Deal Banking Marketing Campaign Dataset With Machine Learning

PySpark

  1. How to Parallelize and Distribute Collection in PySpark
  2. Role of StringIndexer and Pipelines in PySpark ML Feature - Part 1
  3. Role of OneHotEncoder and Pipelines in PySpark ML Feature - Part 2
  4. Feature Transformer VectorAssembler in PySpark ML Feature - Part 3
  5. Logistic Regression in PySpark (ML Feature) with Breast Cancer Data Set

PyTorch

  1. Build the Neural Network with PyTorch
  2. Image Classification with PyTorch
  3. Twitter Sentiment Classification In PyTorch
  4. Training an Image Classifier in Pytorch

Natural Language Processing

  1. Spelling Correction Of The Text Data In Natural Language Processing
  2. Handling Text For Machine Learning
  3. Extracting Text From PDF File in Python Using PyPDF2
  4. How to Collect Data Using Twitter API V2 For Natural Language Processing
  5. Converting Text to Features in Natural Language Processing
  6. Extract A Noun Phrase For A Sentence In Natural Language Processing