Installing and running spyder3 in Debian Stretch
The stable version (3.1.3) in the Debian Stretch repository is kind of old (https://packages.debian.org/search?keywords=spyder3).
So, I installed the 3.2.6 version via pip3 install spyder --user
.
How can I run it? Tried: spyder
, spyder3
, python3-spyder
python3 spyder
. It was installed correctly and can be imported into an interactive shell.
python3 spyder
bumped to the homepage by Community♦ 2 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
The stable version (3.1.3) in the Debian Stretch repository is kind of old (https://packages.debian.org/search?keywords=spyder3).
So, I installed the 3.2.6 version via pip3 install spyder --user
.
How can I run it? Tried: spyder
, spyder3
, python3-spyder
python3 spyder
. It was installed correctly and can be imported into an interactive shell.
python3 spyder
bumped to the homepage by Community♦ 2 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Don't suffer from Shiny New Stuff Syndrome. If you really need newer stuff (hint: you probably don't actually need it), then addAPT::Default-Release "stable";
to an apt.conf file, then add theunstable
repository to your sources.list and runapt-get -t unstable install shinynewstuff
. The-t unstable
overrides the defaultstable
distribution.
– cas
Jan 18 '18 at 3:21
@cas: I'm normally quite happy with the stable version provided by apt. However, in this case it's different. There's a bug popping up that was corrected on the 3.1.4 version.
– Pierre B
Jan 19 '18 at 18:13
the packaged version in testing & unstable is 3.2.4+dfsg1-1, with packages for both python 3.6 (package name "sypder3") and python 2.7 ("spyder").
– cas
Jan 20 '18 at 1:12
add a comment |
The stable version (3.1.3) in the Debian Stretch repository is kind of old (https://packages.debian.org/search?keywords=spyder3).
So, I installed the 3.2.6 version via pip3 install spyder --user
.
How can I run it? Tried: spyder
, spyder3
, python3-spyder
python3 spyder
. It was installed correctly and can be imported into an interactive shell.
python3 spyder
The stable version (3.1.3) in the Debian Stretch repository is kind of old (https://packages.debian.org/search?keywords=spyder3).
So, I installed the 3.2.6 version via pip3 install spyder --user
.
How can I run it? Tried: spyder
, spyder3
, python3-spyder
python3 spyder
. It was installed correctly and can be imported into an interactive shell.
python3 spyder
python3 spyder
edited Jan 17 '18 at 20:19
Pierre B
asked Jan 17 '18 at 20:06
Pierre BPierre B
6452925
6452925
bumped to the homepage by Community♦ 2 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 2 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Don't suffer from Shiny New Stuff Syndrome. If you really need newer stuff (hint: you probably don't actually need it), then addAPT::Default-Release "stable";
to an apt.conf file, then add theunstable
repository to your sources.list and runapt-get -t unstable install shinynewstuff
. The-t unstable
overrides the defaultstable
distribution.
– cas
Jan 18 '18 at 3:21
@cas: I'm normally quite happy with the stable version provided by apt. However, in this case it's different. There's a bug popping up that was corrected on the 3.1.4 version.
– Pierre B
Jan 19 '18 at 18:13
the packaged version in testing & unstable is 3.2.4+dfsg1-1, with packages for both python 3.6 (package name "sypder3") and python 2.7 ("spyder").
– cas
Jan 20 '18 at 1:12
add a comment |
Don't suffer from Shiny New Stuff Syndrome. If you really need newer stuff (hint: you probably don't actually need it), then addAPT::Default-Release "stable";
to an apt.conf file, then add theunstable
repository to your sources.list and runapt-get -t unstable install shinynewstuff
. The-t unstable
overrides the defaultstable
distribution.
– cas
Jan 18 '18 at 3:21
@cas: I'm normally quite happy with the stable version provided by apt. However, in this case it's different. There's a bug popping up that was corrected on the 3.1.4 version.
– Pierre B
Jan 19 '18 at 18:13
the packaged version in testing & unstable is 3.2.4+dfsg1-1, with packages for both python 3.6 (package name "sypder3") and python 2.7 ("spyder").
– cas
Jan 20 '18 at 1:12
Don't suffer from Shiny New Stuff Syndrome. If you really need newer stuff (hint: you probably don't actually need it), then add
APT::Default-Release "stable";
to an apt.conf file, then add the unstable
repository to your sources.list and run apt-get -t unstable install shinynewstuff
. The -t unstable
overrides the default stable
distribution.– cas
Jan 18 '18 at 3:21
Don't suffer from Shiny New Stuff Syndrome. If you really need newer stuff (hint: you probably don't actually need it), then add
APT::Default-Release "stable";
to an apt.conf file, then add the unstable
repository to your sources.list and run apt-get -t unstable install shinynewstuff
. The -t unstable
overrides the default stable
distribution.– cas
Jan 18 '18 at 3:21
@cas: I'm normally quite happy with the stable version provided by apt. However, in this case it's different. There's a bug popping up that was corrected on the 3.1.4 version.
– Pierre B
Jan 19 '18 at 18:13
@cas: I'm normally quite happy with the stable version provided by apt. However, in this case it's different. There's a bug popping up that was corrected on the 3.1.4 version.
– Pierre B
Jan 19 '18 at 18:13
the packaged version in testing & unstable is 3.2.4+dfsg1-1, with packages for both python 3.6 (package name "sypder3") and python 2.7 ("spyder").
– cas
Jan 20 '18 at 1:12
the packaged version in testing & unstable is 3.2.4+dfsg1-1, with packages for both python 3.6 (package name "sypder3") and python 2.7 ("spyder").
– cas
Jan 20 '18 at 1:12
add a comment |
1 Answer
1
active
oldest
votes
For running the IDE after installing it through pip
:
Find where it's installed with pip3 show spyder
. It will be something like: .local/lib/python3.5/site-packages
.
Go to the subdirectory spyder/app/
, there you'll find start.py
. Run it with python3 start.py
.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f417844%2finstalling-and-running-spyder3-in-debian-stretch%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
For running the IDE after installing it through pip
:
Find where it's installed with pip3 show spyder
. It will be something like: .local/lib/python3.5/site-packages
.
Go to the subdirectory spyder/app/
, there you'll find start.py
. Run it with python3 start.py
.
add a comment |
For running the IDE after installing it through pip
:
Find where it's installed with pip3 show spyder
. It will be something like: .local/lib/python3.5/site-packages
.
Go to the subdirectory spyder/app/
, there you'll find start.py
. Run it with python3 start.py
.
add a comment |
For running the IDE after installing it through pip
:
Find where it's installed with pip3 show spyder
. It will be something like: .local/lib/python3.5/site-packages
.
Go to the subdirectory spyder/app/
, there you'll find start.py
. Run it with python3 start.py
.
For running the IDE after installing it through pip
:
Find where it's installed with pip3 show spyder
. It will be something like: .local/lib/python3.5/site-packages
.
Go to the subdirectory spyder/app/
, there you'll find start.py
. Run it with python3 start.py
.
answered Jan 19 '18 at 18:22
Pierre BPierre B
6452925
6452925
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f417844%2finstalling-and-running-spyder3-in-debian-stretch%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
Don't suffer from Shiny New Stuff Syndrome. If you really need newer stuff (hint: you probably don't actually need it), then add
APT::Default-Release "stable";
to an apt.conf file, then add theunstable
repository to your sources.list and runapt-get -t unstable install shinynewstuff
. The-t unstable
overrides the defaultstable
distribution.– cas
Jan 18 '18 at 3:21
@cas: I'm normally quite happy with the stable version provided by apt. However, in this case it's different. There's a bug popping up that was corrected on the 3.1.4 version.
– Pierre B
Jan 19 '18 at 18:13
the packaged version in testing & unstable is 3.2.4+dfsg1-1, with packages for both python 3.6 (package name "sypder3") and python 2.7 ("spyder").
– cas
Jan 20 '18 at 1:12