How can I install the dropbox python client while disconnected from the internet
Okay, I realize this is crazy, but I need to be able to install the python client modules while disconnected from the internet. The devices I'm installing to will eventually be on the internet, but everything I've seen on how to install seems to require "pip install dropbox" which then gives:
"Retrying (Retry(total=4, connection=None, redirect=None)) after connection broken by 'ProtocolError('Connection aborted.', gaierror((-2, 'Name or service not known'))': /simple/requests/"
That would figure, the device doesn't have internet yet. I don't have the option of connecting the device, then installing ... sigh.
I figure it must be just getting the correct script files or compiled scripts in the right places.
It's times like this that I really like eclipse distros that you just copy the whole thing into a directory and wham it is done. :-)
installation python dropbox
add a comment |
Okay, I realize this is crazy, but I need to be able to install the python client modules while disconnected from the internet. The devices I'm installing to will eventually be on the internet, but everything I've seen on how to install seems to require "pip install dropbox" which then gives:
"Retrying (Retry(total=4, connection=None, redirect=None)) after connection broken by 'ProtocolError('Connection aborted.', gaierror((-2, 'Name or service not known'))': /simple/requests/"
That would figure, the device doesn't have internet yet. I don't have the option of connecting the device, then installing ... sigh.
I figure it must be just getting the correct script files or compiled scripts in the right places.
It's times like this that I really like eclipse distros that you just copy the whole thing into a directory and wham it is done. :-)
installation python dropbox
2
See this SO answer. Usingpip install <pkg-name> —no-index —find-links file://<path-to-install-files>
should work.
– agtoever
Jan 15 at 22:10
add a comment |
Okay, I realize this is crazy, but I need to be able to install the python client modules while disconnected from the internet. The devices I'm installing to will eventually be on the internet, but everything I've seen on how to install seems to require "pip install dropbox" which then gives:
"Retrying (Retry(total=4, connection=None, redirect=None)) after connection broken by 'ProtocolError('Connection aborted.', gaierror((-2, 'Name or service not known'))': /simple/requests/"
That would figure, the device doesn't have internet yet. I don't have the option of connecting the device, then installing ... sigh.
I figure it must be just getting the correct script files or compiled scripts in the right places.
It's times like this that I really like eclipse distros that you just copy the whole thing into a directory and wham it is done. :-)
installation python dropbox
Okay, I realize this is crazy, but I need to be able to install the python client modules while disconnected from the internet. The devices I'm installing to will eventually be on the internet, but everything I've seen on how to install seems to require "pip install dropbox" which then gives:
"Retrying (Retry(total=4, connection=None, redirect=None)) after connection broken by 'ProtocolError('Connection aborted.', gaierror((-2, 'Name or service not known'))': /simple/requests/"
That would figure, the device doesn't have internet yet. I don't have the option of connecting the device, then installing ... sigh.
I figure it must be just getting the correct script files or compiled scripts in the right places.
It's times like this that I really like eclipse distros that you just copy the whole thing into a directory and wham it is done. :-)
installation python dropbox
installation python dropbox
asked Jan 15 at 21:57
Brian W.Brian W.
61
61
2
See this SO answer. Usingpip install <pkg-name> —no-index —find-links file://<path-to-install-files>
should work.
– agtoever
Jan 15 at 22:10
add a comment |
2
See this SO answer. Usingpip install <pkg-name> —no-index —find-links file://<path-to-install-files>
should work.
– agtoever
Jan 15 at 22:10
2
2
See this SO answer. Using
pip install <pkg-name> —no-index —find-links file://<path-to-install-files>
should work.– agtoever
Jan 15 at 22:10
See this SO answer. Using
pip install <pkg-name> —no-index —find-links file://<path-to-install-files>
should work.– agtoever
Jan 15 at 22:10
add a comment |
1 Answer
1
active
oldest
votes
Hi you can use "pip download " on a computer with internet connection to download any package you need, then uplaod to the disconected computer, see https://pip.pypa.io/en/stable/reference/pip_download/
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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%2fsuperuser.com%2fquestions%2f1394707%2fhow-can-i-install-the-dropbox-python-client-while-disconnected-from-the-internet%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
Hi you can use "pip download " on a computer with internet connection to download any package you need, then uplaod to the disconected computer, see https://pip.pypa.io/en/stable/reference/pip_download/
add a comment |
Hi you can use "pip download " on a computer with internet connection to download any package you need, then uplaod to the disconected computer, see https://pip.pypa.io/en/stable/reference/pip_download/
add a comment |
Hi you can use "pip download " on a computer with internet connection to download any package you need, then uplaod to the disconected computer, see https://pip.pypa.io/en/stable/reference/pip_download/
Hi you can use "pip download " on a computer with internet connection to download any package you need, then uplaod to the disconected computer, see https://pip.pypa.io/en/stable/reference/pip_download/
answered Jan 15 at 22:33
milkimilki
61
61
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- 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%2fsuperuser.com%2fquestions%2f1394707%2fhow-can-i-install-the-dropbox-python-client-while-disconnected-from-the-internet%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
2
See this SO answer. Using
pip install <pkg-name> —no-index —find-links file://<path-to-install-files>
should work.– agtoever
Jan 15 at 22:10