Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Analysis of CentOS6.5 installation python3.7 instance

2025-01-27 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly introduces CentOS6.5 installation python3.7 instance analysis related knowledge, detailed and easy to understand, simple and fast operation, has a certain reference value, I believe everyone will have a harvest after reading this CentOS6.5 installation python3.7 instance analysis article, let's take a look at it.

Download Python 3

wget https://www.python.org/ftp/python/3.7.0/python-3.7.0.tgz

2. Decompression

[root@mycentos ~]# tar -xzvf python-3.7.0.tgz

First, create a compilation directory:

[root@mycentos ~]# mkdir /usr/local/python3

Python 3.7 requires a new package libffi-devel, which can be compiled and installed again.

[root@mycentos ~]# yum install -y libffi-devel

Then compile and install:

[root@mycentos ~]# cd python-3.7.0[root@mycentos ~]# ./ configure --prefix=/usr/local/python3[root@mycentos ~]# make[root@mycentos ~]# make install

Create soft links:

[root@mycentos ~]# ln -s /usr/local/python3/bin/python3 /usr/bin/python3

View Version:

[root@mycentos ~]# python3 -vpython 3.7.0 About "CentOS6.5 installation python3.7 instance analysis" The content of this article is introduced here, thank you for reading! I believe that everyone has a certain understanding of the knowledge of "CentOS6.5 installation python3.7 instance analysis." If you still want to learn more knowledge, please pay attention to the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report