We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b179571 commit 64d36cfCopy full SHA for 64d36cf
setup.sh
@@ -1,6 +1,10 @@
1
#!/bin/bash
2
echo "安装将花费一定时间,请耐心等待直到安装完成^_^"
3
-sudo apt-get install -y vim vim-gnome ctags xclip astyle python-setuptools
+if which apt-get >/dev/null; then
4
+ sudo apt-get install -y vim vim-gnome ctags xclip astyle python-setuptools
5
+else
6
+ sudo yum install -y vim ctags.i686 xclip astyle python-setuptools
7
+fi
8
sudo easy_install -ZU autopep8 twisted
9
sudo ln -s /usr/bin/ctags /usr/local/bin/ctags
10
mv ~/vim ~/vim_old -f
0 commit comments