Commit c75ab4ec9aa217729d036344e0a52fafcf65fd17

Authored by Dmitriy Zaporozhets
1 parent d1781d3b

Remove python from installation docs

Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
config/initializers/3_grit_ext.rb
1 require 'grit' 1 require 'grit'
2 -require 'pygments'  
3 2
4 Grit::Git.git_binary = Gitlab.config.git.bin_path 3 Grit::Git.git_binary = Gitlab.config.git.bin_path
5 Grit::Git.git_timeout = Gitlab.config.git.timeout 4 Grit::Git.git_timeout = Gitlab.config.git.timeout
doc/install/installation.md
@@ -56,23 +56,6 @@ Install the required packages: @@ -56,23 +56,6 @@ Install the required packages:
56 56
57 sudo apt-get install -y build-essential zlib1g-dev libyaml-dev libssl-dev libgdbm-dev libreadline-dev libncurses5-dev libffi-dev curl openssh-server redis-server checkinstall libxml2-dev libxslt-dev libcurl4-openssl-dev libicu-dev logrotate 57 sudo apt-get install -y build-essential zlib1g-dev libyaml-dev libssl-dev libgdbm-dev libreadline-dev libncurses5-dev libffi-dev curl openssh-server redis-server checkinstall libxml2-dev libxslt-dev libcurl4-openssl-dev libicu-dev logrotate
58 58
59 -Make sure you have the right version of Python installed.  
60 -  
61 - # Install Python  
62 - sudo apt-get install -y python  
63 -  
64 - # Make sure that Python is 2.5+ (3.x is not supported at the moment)  
65 - python --version  
66 -  
67 - # If it's Python 3 you might need to install Python 2 separately  
68 - sudo apt-get install -y python2.7  
69 -  
70 - # Make sure you can access Python via python2  
71 - python2 --version  
72 -  
73 - # If you get a "command not found" error create a link to the python binary  
74 - sudo ln -s /usr/bin/python /usr/bin/python2  
75 -  
76 # For reStructuredText markup language support install required package: 59 # For reStructuredText markup language support install required package:
77 sudo apt-get install -y python-docutils 60 sudo apt-get install -y python-docutils
78 61