Bonjour, je souhaite installer Jupiter sur mon os X et j'ai des soucis avec les commandes d'installation.
J'ai bien installé Python 3.5 mais impossible d'installer correctement pip.

(pip est le programme qui permet de lancer l'installation de Jupiter)

Si je ne pose pas la question au bon endroit merci de m'indiquer ou poster la question.

Ci-dessous j'ai bien vérifié que j'avais la version 3.5
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
iMacdeguillaume:Library guillaumefagot$ ls -l /Library/Frameworks/Python.framework/Versions/3.5/bin
total 272
lrwxr-xr-x  1 root  admin      8  2 jul 12:05 2to3 -> 2to3-3.5
-rwxrwxr-x  1 root  admin    140 16 jan  2017 2to3-3.5
-rwxrwxr-x  1 root  admin    281  2 jul 12:05 easy_install-3.5
lrwxr-xr-x  1 root  admin      7  2 jul 12:05 idle3 -> idle3.5
-rwxrwxr-x  1 root  admin    138 16 jan  2017 idle3.5
-rwxrwxr-x  1 root  admin    253  2 jul 12:05 pip3
-rwxrwxr-x  1 root  admin    253  2 jul 12:05 pip3.5
lrwxr-xr-x  1 root  admin      8  2 jul 12:05 pydoc3 -> pydoc3.5
-rwxrwxr-x  1 root  admin    123 16 jan  2017 pydoc3.5
lrwxr-xr-x  1 root  admin      9  2 jul 12:05 python3 -> python3.5
lrwxr-xr-x  1 root  admin     12  2 jul 12:05 python3-32 -> python3.5-32
lrwxr-xr-x  1 root  admin     16  2 jul 12:05 python3-config -> python3.5-config
-rwxrwxr-x  2 root  admin  25920 16 jan  2017 python3.5
-rwxrwxr-x  1 root  admin  13568 16 jan  2017 python3.5-32
lrwxr-xr-x  1 root  admin     17  2 jul 12:05 python3.5-config -> python3.5m-config
-rwxrwxr-x  2 root  admin  25920 16 jan  2017 python3.5m
-rwxrwxr-x  1 root  admin   2081 16 jan  2017 python3.5m-config
lrwxr-xr-x  1 root  admin     10  2 jul 12:05 pyvenv -> pyvenv-3.5
-rwxrwxr-x  1 root  admin    275 16 jan  2017 pyvenv-3.5
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
iMacdeguillaume:Library guillaumefagot$ sudo easy_install-3.5 pip
Searching for pip
Reading https://pypi.org/simple/pip/
Download error on https://pypi.org/simple/pip/: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:728) -- Some packages may not be found!
Couldn't find index page for 'pip' (maybe misspelled?)
Scanning index of all packages (this may take a while)
Reading https://pypi.org/simple/
Download error on https://pypi.org/simple/: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:728) -- Some packages may not be found!
No local packages or working download links found for pip
error: Could not find suitable distribution for Requirement.parse('pip')
iMacdeguillaume:Library guillaumefagot$ sudo easy_install-3.5 pip3.5
Searching for pip3.5
Reading https://pypi.org/simple/pip3.5/
Download error on https://pypi.org/simple/pip3.5/: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:728) -- Some packages may not be found!
Couldn't find index page for 'pip3.5' (maybe misspelled?)
Scanning index of all packages (this may take a while)
Reading https://pypi.org/simple/
Download error on https://pypi.org/simple/: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:728) -- Some packages may not be found!
No local packages or working download links found for pip3.5
error: Could not find suitable distribution for Requirement.parse('pip3.5')

NB(Je ne peux pas passer par la version Anaconda car mon mac os X est en 32 bits.)

Merci d'avance de vos idées.