51Testing软件测试论坛

标题: Centos [打印本页]

作者: 悠悠小仙仙    时间: 2019-4-8 15:35
标题: Centos
Install Python3

install Python3 in Centos-7.0 system
  1. yum -y groupinstall "Development tools"
  2.         yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel gdbm-devel db4-devel libpcap-devel xz-devel
  3.         mkdir /usr/local/python3
  4.         cd /usr/local/python3
  5.         wget https://www.python.org/ftp/python/3.7.2/Python-3.7.2.tar.xz
  6.         tar -xvf Python-3.7.2.tar.xz
  7.         ./configure --prefix=/usr/local/python3
  8.         make
  9.         make install
  10.      ln -s /usr/local/python3/bin/python3 /usr/bin/python
复制代码

git
  1. git version
  2. yum remove git
  3. yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel gcc perl-ExtUtils-MakeMaker               
  4. cd /usr/src
  5. wget https://www.kernel.org/pub/software/scm/git/git-2.8.3.tar.gz --no-check-certificate
  6. tar -zxvf git-2.8.3.tar.gz
  7. cd git-2.8.3
  8. ./configure prefix=/usr/local/git/
  9. make && make install
  10. vi /etc/profile
  11. export PATH=$PATH:/usr/local/git/bin
  12. source /etc/profile
复制代码


Texlive
  1. Texlive
  2. Update:
  3. tlmgr update --self --all --reinstall-forcibly-removed
  4. Update list:
  5. tlmgr update –list
  6. texhash
复制代码


GPU
  1. lspci  | grep -i vga
复制代码

作者: Miss_love    时间: 2020-12-30 17:02
支持分享




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2