issues during jupyter install using pip on Python 2.7.3
We are using python 2.7.3 and do not have Anaconda available for install in the organization approved package list. So we have been trying to manually install the dependencies using unofficial windows binaries provided by Christoph Gohlke. Currently we are stuck at installing terminado-0.8.1-py2.py3-none-any.whl. This needs a pywinpty package which is not available for Python 2.7.
We would appreciate any suggestions on how to proceed.
We would like to get Jupyter installed using any other possible option for python 2.7.3
installing jupyter using pip gives below error so we went with manual route to install individual packages
60: InsecurePlatformWarning: A true SSLContext object is not available. This pre
vents urllib3 from configuring SSL appropriately and may cause certain SSL conne
ctions to fail. You can upgrade to a newer version of Python to solve this. For
more information, see https://urllib3.readthedocs.io/en/latest/advanced-usage.ht
ml#ssl-warnings
InsecurePlatformWarning
Could not fetch URL https://pypi.org/simple/jupyter/: There was a problem conf
irming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max
retries exceeded with url: /simple/jupyter/ (Caused by SSLError(SSLError(1, '_ss
l.c:504: error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol
version'),)) - skipping
Could not find a version that satisfies the requirement jupyter (from versions
: )
No matching distribution found for jupyter
python python-2.7 pip install jupyter
add a comment |
We are using python 2.7.3 and do not have Anaconda available for install in the organization approved package list. So we have been trying to manually install the dependencies using unofficial windows binaries provided by Christoph Gohlke. Currently we are stuck at installing terminado-0.8.1-py2.py3-none-any.whl. This needs a pywinpty package which is not available for Python 2.7.
We would appreciate any suggestions on how to proceed.
We would like to get Jupyter installed using any other possible option for python 2.7.3
installing jupyter using pip gives below error so we went with manual route to install individual packages
60: InsecurePlatformWarning: A true SSLContext object is not available. This pre
vents urllib3 from configuring SSL appropriately and may cause certain SSL conne
ctions to fail. You can upgrade to a newer version of Python to solve this. For
more information, see https://urllib3.readthedocs.io/en/latest/advanced-usage.ht
ml#ssl-warnings
InsecurePlatformWarning
Could not fetch URL https://pypi.org/simple/jupyter/: There was a problem conf
irming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max
retries exceeded with url: /simple/jupyter/ (Caused by SSLError(SSLError(1, '_ss
l.c:504: error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol
version'),)) - skipping
Could not find a version that satisfies the requirement jupyter (from versions
: )
No matching distribution found for jupyter
python python-2.7 pip install jupyter
1
Possible duplicate of Not able to install Python packages [SSL: TLSV1_ALERT_PROTOCOL_VERSION]
– phd
Nov 19 '18 at 14:21
stackoverflow.com/…
– phd
Nov 19 '18 at 14:21
tried upgrading pip to latest version but it did not help. We are on Windows 7
– Kalidas
Nov 19 '18 at 23:58
Upgradepython
to at least 2.7.9, better 2.7.15.
– phd
Nov 20 '18 at 12:55
1
I was able to fix the issue related to pywinpty package. Although the package was named with Python 3 convention, the documentation indicated that it supported 2.7. Changing the package name and running PIP solved the problem. Was able to complete Jupyter installation thereafter,
– Kalidas
Nov 20 '18 at 22:46
add a comment |
We are using python 2.7.3 and do not have Anaconda available for install in the organization approved package list. So we have been trying to manually install the dependencies using unofficial windows binaries provided by Christoph Gohlke. Currently we are stuck at installing terminado-0.8.1-py2.py3-none-any.whl. This needs a pywinpty package which is not available for Python 2.7.
We would appreciate any suggestions on how to proceed.
We would like to get Jupyter installed using any other possible option for python 2.7.3
installing jupyter using pip gives below error so we went with manual route to install individual packages
60: InsecurePlatformWarning: A true SSLContext object is not available. This pre
vents urllib3 from configuring SSL appropriately and may cause certain SSL conne
ctions to fail. You can upgrade to a newer version of Python to solve this. For
more information, see https://urllib3.readthedocs.io/en/latest/advanced-usage.ht
ml#ssl-warnings
InsecurePlatformWarning
Could not fetch URL https://pypi.org/simple/jupyter/: There was a problem conf
irming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max
retries exceeded with url: /simple/jupyter/ (Caused by SSLError(SSLError(1, '_ss
l.c:504: error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol
version'),)) - skipping
Could not find a version that satisfies the requirement jupyter (from versions
: )
No matching distribution found for jupyter
python python-2.7 pip install jupyter
We are using python 2.7.3 and do not have Anaconda available for install in the organization approved package list. So we have been trying to manually install the dependencies using unofficial windows binaries provided by Christoph Gohlke. Currently we are stuck at installing terminado-0.8.1-py2.py3-none-any.whl. This needs a pywinpty package which is not available for Python 2.7.
We would appreciate any suggestions on how to proceed.
We would like to get Jupyter installed using any other possible option for python 2.7.3
installing jupyter using pip gives below error so we went with manual route to install individual packages
60: InsecurePlatformWarning: A true SSLContext object is not available. This pre
vents urllib3 from configuring SSL appropriately and may cause certain SSL conne
ctions to fail. You can upgrade to a newer version of Python to solve this. For
more information, see https://urllib3.readthedocs.io/en/latest/advanced-usage.ht
ml#ssl-warnings
InsecurePlatformWarning
Could not fetch URL https://pypi.org/simple/jupyter/: There was a problem conf
irming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max
retries exceeded with url: /simple/jupyter/ (Caused by SSLError(SSLError(1, '_ss
l.c:504: error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol
version'),)) - skipping
Could not find a version that satisfies the requirement jupyter (from versions
: )
No matching distribution found for jupyter
python python-2.7 pip install jupyter
python python-2.7 pip install jupyter
edited Nov 20 '18 at 0:17
asked Nov 19 '18 at 13:24
Kalidas
863
863
1
Possible duplicate of Not able to install Python packages [SSL: TLSV1_ALERT_PROTOCOL_VERSION]
– phd
Nov 19 '18 at 14:21
stackoverflow.com/…
– phd
Nov 19 '18 at 14:21
tried upgrading pip to latest version but it did not help. We are on Windows 7
– Kalidas
Nov 19 '18 at 23:58
Upgradepython
to at least 2.7.9, better 2.7.15.
– phd
Nov 20 '18 at 12:55
1
I was able to fix the issue related to pywinpty package. Although the package was named with Python 3 convention, the documentation indicated that it supported 2.7. Changing the package name and running PIP solved the problem. Was able to complete Jupyter installation thereafter,
– Kalidas
Nov 20 '18 at 22:46
add a comment |
1
Possible duplicate of Not able to install Python packages [SSL: TLSV1_ALERT_PROTOCOL_VERSION]
– phd
Nov 19 '18 at 14:21
stackoverflow.com/…
– phd
Nov 19 '18 at 14:21
tried upgrading pip to latest version but it did not help. We are on Windows 7
– Kalidas
Nov 19 '18 at 23:58
Upgradepython
to at least 2.7.9, better 2.7.15.
– phd
Nov 20 '18 at 12:55
1
I was able to fix the issue related to pywinpty package. Although the package was named with Python 3 convention, the documentation indicated that it supported 2.7. Changing the package name and running PIP solved the problem. Was able to complete Jupyter installation thereafter,
– Kalidas
Nov 20 '18 at 22:46
1
1
Possible duplicate of Not able to install Python packages [SSL: TLSV1_ALERT_PROTOCOL_VERSION]
– phd
Nov 19 '18 at 14:21
Possible duplicate of Not able to install Python packages [SSL: TLSV1_ALERT_PROTOCOL_VERSION]
– phd
Nov 19 '18 at 14:21
stackoverflow.com/…
– phd
Nov 19 '18 at 14:21
stackoverflow.com/…
– phd
Nov 19 '18 at 14:21
tried upgrading pip to latest version but it did not help. We are on Windows 7
– Kalidas
Nov 19 '18 at 23:58
tried upgrading pip to latest version but it did not help. We are on Windows 7
– Kalidas
Nov 19 '18 at 23:58
Upgrade
python
to at least 2.7.9, better 2.7.15.– phd
Nov 20 '18 at 12:55
Upgrade
python
to at least 2.7.9, better 2.7.15.– phd
Nov 20 '18 at 12:55
1
1
I was able to fix the issue related to pywinpty package. Although the package was named with Python 3 convention, the documentation indicated that it supported 2.7. Changing the package name and running PIP solved the problem. Was able to complete Jupyter installation thereafter,
– Kalidas
Nov 20 '18 at 22:46
I was able to fix the issue related to pywinpty package. Although the package was named with Python 3 convention, the documentation indicated that it supported 2.7. Changing the package name and running PIP solved the problem. Was able to complete Jupyter installation thereafter,
– Kalidas
Nov 20 '18 at 22:46
add a comment |
1 Answer
1
active
oldest
votes
You can:
- Go to Python root folder and run the "Install Certificates.command" file.
- Upgrade python version to 3.X.X and reinstall. You may follow https://www.youtube.com/watch?v=BVS3U1OQzO4
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53375608%2fissues-during-jupyter-install-using-pip-on-python-2-7-3%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can:
- Go to Python root folder and run the "Install Certificates.command" file.
- Upgrade python version to 3.X.X and reinstall. You may follow https://www.youtube.com/watch?v=BVS3U1OQzO4
add a comment |
You can:
- Go to Python root folder and run the "Install Certificates.command" file.
- Upgrade python version to 3.X.X and reinstall. You may follow https://www.youtube.com/watch?v=BVS3U1OQzO4
add a comment |
You can:
- Go to Python root folder and run the "Install Certificates.command" file.
- Upgrade python version to 3.X.X and reinstall. You may follow https://www.youtube.com/watch?v=BVS3U1OQzO4
You can:
- Go to Python root folder and run the "Install Certificates.command" file.
- Upgrade python version to 3.X.X and reinstall. You may follow https://www.youtube.com/watch?v=BVS3U1OQzO4
answered Dec 10 '18 at 17:57


Aanchal
11
11
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53375608%2fissues-during-jupyter-install-using-pip-on-python-2-7-3%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Possible duplicate of Not able to install Python packages [SSL: TLSV1_ALERT_PROTOCOL_VERSION]
– phd
Nov 19 '18 at 14:21
stackoverflow.com/…
– phd
Nov 19 '18 at 14:21
tried upgrading pip to latest version but it did not help. We are on Windows 7
– Kalidas
Nov 19 '18 at 23:58
Upgrade
python
to at least 2.7.9, better 2.7.15.– phd
Nov 20 '18 at 12:55
1
I was able to fix the issue related to pywinpty package. Although the package was named with Python 3 convention, the documentation indicated that it supported 2.7. Changing the package name and running PIP solved the problem. Was able to complete Jupyter installation thereafter,
– Kalidas
Nov 20 '18 at 22:46