Was ist das richtige Format, um pip3 zu aktualisieren, wenn pip2 der Standard ist?

Ich entwickle für beidePython 2 und3.
Thus, ich muss beide @ verwendpip2 undpip3.

Beim Benutzenpip3 - Ich erhalte diese Upgrade-Anfrage (letzte zwei Zeilen):

$ pip3 install arrow
Requirement already satisfied (use --upgrade to upgrade): arrow in c:\program files (x86)\python3.5.1\lib\site-packages
Requirement already satisfied (use --upgrade to upgrade): python-dateutil in c:\program files (x86)\python3.5.1\lib\site-packages (from arrow)
Requirement already satisfied (use --upgrade to upgrade): six>=1.5 in c:\program files (x86)\python3.5.1\lib\site-packages (from python-dateutil->arrow)
You are using pip version 7.1.2, however version 8.1.2 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.

Meine Standardeinstellungpip ist fürPython 2, nämlich:

$  python -m pip install --upgrade pip
Requirement already up-to-date: pip in /usr/lib/python2.7/site-packages

eines der folgenden explicit -Befehle können das @ erfolgreich aktualisierPython 3 pip:

$  python -m pip3 install --upgrade pip3
/bin/python: No module named pip3

$  python -m pip install --upgrade pip3
Collecting pip3
  Could not find a version that satisfies the requirement pip3 (from versions: )
No matching distribution found for pip3

$  python -m pip install --upgrade pip3.4
Collecting pip3.4
  Could not find a version that satisfies the requirement pip3.4 (from versions: )
No matching distribution found for pip3.4
Was ist der richtige Befehl zum Aktualisieren von pip3, wenn es nicht der Standard-pip ist?

Umgebung

$ python3 -V
Python 3.4.3
$ uname -a
CYGWIN_NT-6.1-WOW 2.5.2(0.297/5/3) 2016-06-23 14:27 i686 Cygwin

Antworten auf die Frage(4)

Ihre Antwort auf die Frage