File: deps.rst

package info (click to toggle)
python-tz 2025.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,400 kB
  • sloc: ansic: 7,826; python: 2,414; awk: 1,067; makefile: 918; sh: 693
file content (19 lines) | stat: -rw-r--r-- 1,070 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
dev container setup cheat sheet
-------------------------------

.. code::

    locale-gen
    add-apt-repository ppa:deadsnakes/ppa

    apt update
    apt install tox bzr build-essential twine python-all python-all-dev python3-all python3-all-dev python3-docutils python3-sphinx python3-flake8 python-flake8 python2.4-complete python2.5-complete python2.6-complete python3.1-complete python3.2-complete python3.3-complete python3.4-complete python3.5 python3.5-dev python3.7 python3.7-dev  python-wheel python3-wheel python-pip python3-pip


    wget https://raw.githubusercontent.com/pypa/setuptools/bootstrap-py24/ez_setup.py -O - | python2.4
    wget https://raw.githubusercontent.com/pypa/setuptools/bootstrap-py24/ez_setup.py -O - | python2.5
    wget https://bootstrap.pypa.io/ez_setup.py -O - | python2.6
    wget https://bootstrap.pypa.io/ez_setup.py -O - | python3.1
    wget https://bootstrap.pypa.io/ez_setup.py -O - | python3.2
    wget https://bootstrap.pypa.io/ez_setup.py -O - | python3.3
    wget https://bootstrap.pypa.io/ez_setup.py -O - | python3.4