Issues with upgrading Python and installing Mongodb drivers under Centos

Issues with upgrading Python and installing Mongodb drivers under Centos

Check the Python version python -V If it is below 2.7, you need to upgrade.

First go to the official website to download the python compressed package you want, and then decompress it. Enter the main directory and perform the following operations (GCC compiler support is required)

./configure --prefix=/usr/local
make all 
make install 
make clean 
make distclean

After executing these commands, you can see python2.7 in the /usr/local/bin/ directory, and then try to execute /usr/local/bin/python2.7 -V If the version number is displayed, it means that it has been installed successfully. But the upgrade is only half done. You can run python -V again in the terminal and you will find that it is still the version number before the upgrade. At this time, do the following.

Create a soft link to make the system default python point to python2.7

mv /usr/bin/python /usr/bin/python2.6.6 
ln -s /usr/local/bin/python2.7 /usr/bin/python

At this time, when you execute python -V, it will be the version you installed.

The Python version has been upgraded, but you still have a few steps to go.

At this time, you can try to execute yum list in the terminal and you will find that the yum command does not work. This is because yum is not compatible with python 2.7 by default.

We need to modify the /usr/bin/yum file and open it with vim (administrator privileges are required).

The file header

!/usr/bin/python

Change to

!/usr/bin/python2.6.6 This is the file you modified before linking

This way, the Python upgrade is basically completed.

Install MongoDb Driver

After installing Python, we use it. Python sometimes requires many third-party libraries. These libraries need to be installed additionally. The main installation tools are setuptools and pip (I won’t explain the difference between these two tools here).

Next, we will show you how to install setuptools and MongoDb driver offline on the server (our server is not allowed to access the Internet, not even for a second).

Install setuptools

Download setuptools-1.4.2.tar.gz

After decompression, enter the main directory and execute python setup.py install

If the installation process prompts that the corresponding py package is missing, please install the corresponding software package through yum (as follows),

Then recompile and install py, and the installation will be successful if you continue.

Note that the following packages are usually missing

yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel

After installing setuptools, you can install the mongodb driver. Same method as above.

If you happen to need to install the MongoDB Python driver and you are reading this article from the end to the beginning, you may be able to avoid installing Python twice.

Summarize

The above is what I introduced to you about upgrading Python and Mongodb driver installation under CentOS. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • Detailed explanation of the process of operating MongoDb database with Python
  • Detailed explanation of Python connecting to MongoDB cluster
  • Detailed explanation of Python3 operation methods of MongoDB adding, modifying and checking
  • How to operate redis and mongoDB in Python
  • Python MongoDB inserts data if it already exists, but does not execute, and inserts if it does not exist
  • Detailed examples of Python connection and operation of MongoDB database
  • Summary of Python methods for operating Mongodb database
  • Python3 implements crawling TOP500 music information and storing it in mongoDB database
  • Python uses mongodb to save the data of crawling Douban movies
  • Python crawler scrapy framework crawls a recruitment website and stores it in mongodb for analysis
  • A brief analysis of the operation methods between Python and Mongodb database
  • Python uses the pymongo library to operate the MongoDB database method example
  • Detailed explanation of Python's method of operating mongodb database
  • Python connects to MongoDB password authentication example
  • Python accesses MongoDB and converts it into Dataframe
  • Basic operations of Mongodb and how to connect to mongodb with Python and perform basic operations
  • Full record of the steps to use Python ORM to control MongoDB (MongoEngine)
  • Python database development: MongoDB installation and Python3 operation of MongoDB database detailed methods and examples

<<:  Node.js implements breakpoint resume

>>:  MySQL 8.0.15 installation and configuration graphic tutorial under Win10

Recommend

Several ways to introduce pictures in react projects

The img tag introduces the image Because react ac...

JS implementation of Apple calculator

This article example shares the specific code of ...

Solution to CSS anchor positioning being blocked by the top fixed navigation bar

Many websites have a navigation bar fixed at the ...

Best Practices for Deploying ELK7.3.0 Log Collection Service with Docker

Write at the beginning This article only covers E...

Vue batch update dom implementation steps

Table of contents Scene Introduction Deep respons...

Mini Program implements list countdown function

This article example shares the specific code for...

How to reset the root password in Linux mysql-5.6

1. Check whether the MySQL service is started. If...

How to use mysqladmin to get the current TPS and QPS of a MySQL instance

mysqladmin is an official mysql client program th...

A magical MySQL deadlock troubleshooting record

background Speaking of MySQL deadlock, I have wri...

How to implement Hover drop-down menu with CSS

As usual, today I will talk about a very practica...

Easyswoole one-click installation script and pagoda installation error

Frequently asked questions When you are new to ea...

Detailed tutorial for springcloud alibaba nacos linux configuration

First download the compressed package of nacos fr...

About the selection of time date type and string type in MySQL

Table of contents 1. Usage of DATETIME and TIMEST...

Vue codemirror realizes the effect of online code compiler

Preface If we want to achieve the effect of onlin...

Understand the implementation of Nginx location matching in one article

Since the team is separating the front-end and ba...