Skip to content

Commit 2f3bdc3

Browse files
committed
readme: update package names in installation steps (FIXME)
Part of #5562
1 parent 1d2a8b6 commit 2f3bdc3

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

README.FreeBSD

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@ git submodule update --init --recursive
1616
cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo
1717
gmake
1818

19-
3. Set up python 2.7
19+
3. Set up python 3.x
2020
-------------
2121

2222
Install testing dependences either from packages or from pip.
2323

2424
3.1. From packages:
2525
-------------
26-
pkg install python27 py27-yaml py27-daemon py27-msgpack
26+
pkg install python37 py37-yaml py37-daemon py37-msgpack
2727

2828
3.2. From pip:
2929
-------------
30-
pkg install py27-virtualenv
30+
pkg install py37-virtualenv
3131
virtualenv .venv
3232
source .venv/bin/activate
3333
pip install -r ../test-run/requirements.txt

README.MacOSX

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ brew install cmake readline icu4c openssl
2424
For MacPorts:
2525
port install autoconf binutils cmake ncurses zlib readline
2626

27-
2. Install test-required packages and modules for Python 2.7
27+
2. Install test-required packages and modules for Python 3.x
2828
-------------
2929

3030
You need: pyYAML, python-daemon, msgpack-python, gevent, six

README.OpenBSD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ mkdir build && cd build
1717
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DENABLE_BUNDLED_LIBCURL=OFF ..
1818
gmake -j
1919

20-
3. Set up python 2.7
20+
3. Set up python 3.x
2121
--------------------
2222

2323
Install testing dependences either from packages or from pip.
2424

2525
3.1. From packages:
2626
-------------------
27-
pkg_add python-2.7.16 py-gevent py-yaml py-msgpack
27+
pkg_add python-3.6.7 py-gevent py-yaml py-msgpack
2828

2929
3.2. From pip:
3030
--------------

static-build/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ be necessary for building and testing:
1919

2020
Python interpreter is not necessary for building Tarantool itself, unless you
2121
intend to use the “Run the test suite". For all platforms, this is python
22-
version 2.7+ (but not 3.x). You need the following Python modules:
22+
version 3.x. You need the following Python modules:
2323
* pyyaml
2424
* argparse
2525
* msgpack-python
@@ -33,16 +33,16 @@ CentOS:
3333
```bash
3434
yum install -y \
3535
git perl gcc cmake make gcc-c++ libstdc++-static autoconf automake libtool \
36-
python-msgpack python-yaml python-argparse python-six python-gevent
36+
python3-msgpack python3-yaml python-argparse python3-six python3-gevent
3737
```
3838

3939
Ubuntu/Debian:
4040

4141
```bash
4242
apt-get install -y \
4343
build-essential cmake make coreutils autoconf automake libtool sed \
44-
python python-pip python-setuptools python-dev \
45-
python-msgpack python-yaml python-argparse python-six python-gevent
44+
python3 python3-pip python3-setuptools python3-dev \
45+
python3-msgpack python3-yaml python-argparse python3-six python3-gevent
4646
```
4747

4848
MacOS:
@@ -60,8 +60,8 @@ Install brew using command from
6060
After that run next script:
6161

6262
```bash
63-
brew install autoconf automake libtool cmake file://$${PWD}/tools/brew_taps/tntpython2.rbs
64-
pip install --force-reinstall -r test-run/requirements.txt
63+
brew install autoconf automake libtool cmake
64+
pip install --user --force-reinstall -r test-run/requirements.txt
6565
```
6666

6767
## Usage

0 commit comments

Comments
 (0)