Centos Env Install

Posted by ExiaHuang on September 5, 2017

python

Centos7でのpython入れ替えメモ

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# cat /etc/redhat-release
CentOS Linux release 7.3.1611 (Core)

# yum install -y https://centos7.iuscommunity.org/ius-release.rpm
# yum search python36
# yum install -y python36u python36u-libs python36u-devel python36u-pip

シンボリックリンク張り替え
# ls -l /bin/py*
# ln -s /bin/python3.6 /bin/python3
# unlink /bin/python
# ln -s /bin/python3.6 /bin/python
# vim $(which pip)
1行目  #!/usr/bin/python2   → #!/usr/bin/python
# pip --version
pip 9.0.1 from /usr/lib/python3.6/site-packages (python 3.6)

node

##

redis

mongodb

ant 1.10 install

1
2
3
4
5
wget http://www.apache.org/dist/ant/binaries/apache-ant-1.10.1-bin.tar.gz
tar zxvf apache-ant-1.10.1-bin.tar.gz
mv apache-ant-1.10.1 /usr/share/ant
ln -s /usr/share/ant/bin/ant /usr/bin/ant
vi ~/.bash_profile

bash_profile

1
2
~/.bash_profile
export ANT_HOME=/usr/share/ant