Commit c75ab4ec9aa217729d036344e0a52fafcf65fd17
1 parent
d1781d3b
Exists in
spb-stable
and in
3 other branches
Remove python from installation docs
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Showing
2 changed files
with
0 additions
and
18 deletions
Show diff stats
config/initializers/3_grit_ext.rb
doc/install/installation.md
... | ... | @@ -56,23 +56,6 @@ Install the required packages: |
56 | 56 | |
57 | 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 | 59 | # For reStructuredText markup language support install required package: |
77 | 60 | sudo apt-get install -y python-docutils |
78 | 61 | ... | ... |