安装Python3.6
1.下载Python安装包

[shell]

cd /usr/local/src
wget https://www.python.org/ftp/python/3.6.0/Python-3.6.0.tgz

[/shell]

2.解压

[shell]

tar -zxvf Python-3.6.0.tgz

[/shell]

3.进入解压目录

[shell]

cd Python-3.6.0

[/shell]

4.编译、安装

[shell]

./configure --prefix=/usr/local/python
make && make install

[/shell]

这里如果报:zipimport.ZipImportError: can’t decompress data; zlib not available错误的话,是因为缺少了zlib的相关工具包导致的,所以安装一下就可以了:yum -y install zlib*

5.添加环境变量

[shell]

echo PATH='/usr/local/python/bin/:$PATH' >> /etc/profile
source /etc/profile
[/shell]

6.输入Python3.6,检查是否安装成功,如果没问题,输出以下内容:

[shell]

Python 3.6.0 (default, Jan 5 2018, 19:42:14)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-18)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>
[/shell]

为Python3.6安装pip
1.安装pip前需要前置安装setuptools

[shell]

wget --no-check-certificate https://pypi.python.org/packages/source/s/setuptools/setuptools-19.6.tar.gz#md5=c607dd118eae682c44ed146367a17e26
[/shell]

2.解压

[shell]

tar -zxvf setuptools-19.6.tar.gz
[/shell]

3.进入目录并安装

[shell]

cd setuptools-19.6
python3 setup.py build
python3 setup.py install

[/shell]

# 这里报错了:RuntimeError: Compression requires the (missing) zlib module
#因此需要在linux中安装zlib-devel包,进行支持

# 当然,如果没有报错(上面安装python的时候如果安装了zlib相关依赖就不会报错),则不需要进行此步骤,直接跳到第5步,直接安装pip

[shell]

yum install zlib-devel

[/shell]

# 这时又需要对python3.6进行重新编译安装。

[shell]

cd Python-3.6.0 # 这里根据个人设置,进入之前的Python解压后的安装包的所在路径
make && make install
[/shell]

4.漫长的编译安装过程后,再重新安装setuptools

# 记得重新回到自己的setuptools-19.6目录下噢~

[shell]

python3 setup.py build
python3 setup.py install

[/shell]

5.安装pip

[shell]

wget https://pypi.python.org/packages/11/b6/abcb525026a4be042b486df43905d6893fb04f05aac21c32c638e939e447/pip-9.0.1.tar.gz#md5=35f01da33009719497f01a4ba69d63c9

tar -zxvf pip-9.0.1.tar.gz # 解压
cd pip-9.0.1 # 进入目录
python3 setup.py install # 安装
[/shell]

6.安装好后,输入pip3 -V,输出如下则说明安装成功

[shell]

[root@iZuf6dql45c7jfss4t95fjZ local]# pip3 -V
pip 9.0.1 from /usr/local/python/lib/python3.6/site-packages (python 3.6)
[/shell]

安装Nginx
1.安装Nginx所需的环境依赖

[shell]

yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel
[/shell]

2.下载Nginx压缩包

[shell]

wget http://nginx.org/download/nginx-1.10.2.tar.gz
[/shell]

3.解压

[shell]

tar -zxvf nginx-1.10.2.tar.gz
[/shell]

4.进入目录

[shell]

cd nginx-1.10.2
[/shell]

5.编译、安装

[shell]

./configure --prefix=/usr/local/nginx
make && make install
[/shell]

6.查找nginx的安装目录

[shell]

whereis nginx
[/shell]

7.进入nginx的安装目录,默认是/usr/local/nginx

8.启动nginx

[shell]

/usr/local/nginx/sbin/nginx
[/shell]

9.打开浏览器,输入IP地址,看到欢迎信息就表示安装成功了。

---------------------
作者:喜欢海呀
来源:CSDN
原文:https://blog.csdn.net/qq_25046261/article/details/78985109
版权声明:本文为博主原创文章,转载请附上博文链接!

发表评论

邮箱地址不会被公开。 必填项已用*标注