码迷,mamicode.com
首页 > 系统相关 > 详细

Linux安装软件的3种方式

时间:2019-07-07 12:39:23      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:flask   tables   usr   art   iptables   list   tps   tab   安装   

1.源代码编译安装

2.yum方式,自动搜索依赖关系,自动下载解决依赖关系

 446  pip3 list
  447  pip3 install -i https://pypi.douban.com/simple flask
  448  flask
  449  pip3 list
  450  clear
  451  cd /etc/yum.repos.d/
  452  ls
  453  mkdir allrepo
  454  mv ./* allrepo
  455  ls
  456  cd allrepo
  457  ls
  458  cd ..
  459  tree yum.repos.d
  460  cd yum.repos.d
  461  ls
  462  yum install wget -y
# 下载阿里云yum源1
  463  wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
  464  ls
  465  yum install nginx -y
# 下载阿里云yum源2
  466  wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
  467  ls
  468  yum install sl -y
  469  sl
  470  yum install nginx -y
  471  systemctl start nginx
  472  ps -ef | grep nginx
  473  netstat -tunlp | grep 80
  474  iptables -F
  475  rpm -ql nginx
  476  find / -name index.html
  477  cd /usr/share/nginx/html/index.html
  478  vim /usr/share/nginx/html/index.html

3.rpm方式手动安装

Linux安装软件的3种方式

标签:flask   tables   usr   art   iptables   list   tps   tab   安装   

原文地址:https://www.cnblogs.com/xuqidong/p/11145835.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!