Edit with IDLE missing using Windows 10
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I installed Python 3.6.1 windows 64-bit. But my edit with idle is missing when I use the right click. Can somebody help? I already reinstalled a few times, but the problem still there. =(
python3
bumped to the homepage by Community♦ yesterday
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 |
I installed Python 3.6.1 windows 64-bit. But my edit with idle is missing when I use the right click. Can somebody help? I already reinstalled a few times, but the problem still there. =(
python3
bumped to the homepage by Community♦ yesterday
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 |
I installed Python 3.6.1 windows 64-bit. But my edit with idle is missing when I use the right click. Can somebody help? I already reinstalled a few times, but the problem still there. =(
python3
I installed Python 3.6.1 windows 64-bit. But my edit with idle is missing when I use the right click. Can somebody help? I already reinstalled a few times, but the problem still there. =(
python3
python3
asked May 26 '17 at 18:08
toddtodd
612
612
bumped to the homepage by Community♦ yesterday
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♦ yesterday
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 |
add a comment |
2 Answers
2
active
oldest
votes
I don't know where your context menu items went but you can fix them by following the steps here “Edit with IDLE” option missing from context menu Only do that if you're comfortable messing around with the registry though.
I do not have a Windows computer to try this on, but your other option is to re-install Python and look for an option to install the context menu/shell extensions. It's probably in there, just off by default.
1
It would be helpful to include the essential parts of the linked page so your answer can be useful even when the other page goes down.
– Twisty Impersonator
Feb 7 at 1:13
add a comment |
The problem most likely stems from overwriting the Python.File
filetyp with a user choice on how to open a file. I could fix it on my system using the registry editor of Windows (Win+R, then enter regedit
and press enter) as follows:
- Delete all user choice entries for
.py
and.pyw
in the registry
for example there is most likely an entry at
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerFileExts.pyUserChoice
- Correct/extend these two entries as follows
for .py
files:
[HKEY_CLASSES_ROOTPython.File]
@="Python File"
[HKEY_CLASSES_ROOTPython.FileDefaultIcon]
@=""C:\Windows\py.exe",1"
[HKEY_CLASSES_ROOTPython.FileShell]
[HKEY_CLASSES_ROOTPython.FileShelleditwithidle]
"MUIVerb"="Edit with IDLE"
[HKEY_CLASSES_ROOTPython.FileShelleditwithidlecommand]
@=""C:\python3\pythonw.exe" -m idlelib "%L" %*"
[HKEY_CLASSES_ROOTPython.FileShellopen]
[HKEY_CLASSES_ROOTPython.FileShellopencommand]
@=""C:\Windows\py.exe" "%L" %*"
and for .pyw
files:
[HKEY_CLASSES_ROOTPython.NoConFileDefaultIcon]
@=""C:\Windows\py.exe",1"
[HKEY_CLASSES_ROOTPython.NoConFileShell]
[HKEY_CLASSES_ROOTPython.NoConFileShelleditwithidle]
"MUIVerb"="Edit with IDLE"
[HKEY_CLASSES_ROOTPython.NoConFileShelleditwithidlecommand]
@=""C:\python3\pythonw.exe" -m idlelib "%L" %*"
[HKEY_CLASSES_ROOTPython.NoConFileShellopen]
[HKEY_CLASSES_ROOTPython.NoConFileShellopencommand]
@=""C:\Windows\pyw.exe" "%L" %*"
Then you should get a working option "Edit with IDLE" whenever you right-click on .py
or a .pyw
file in the file explorer. Double-clicking or opening the file involves the python launcher and directly starts the program.
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%2f1213238%2fedit-with-idle-missing-using-windows-10%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I don't know where your context menu items went but you can fix them by following the steps here “Edit with IDLE” option missing from context menu Only do that if you're comfortable messing around with the registry though.
I do not have a Windows computer to try this on, but your other option is to re-install Python and look for an option to install the context menu/shell extensions. It's probably in there, just off by default.
1
It would be helpful to include the essential parts of the linked page so your answer can be useful even when the other page goes down.
– Twisty Impersonator
Feb 7 at 1:13
add a comment |
I don't know where your context menu items went but you can fix them by following the steps here “Edit with IDLE” option missing from context menu Only do that if you're comfortable messing around with the registry though.
I do not have a Windows computer to try this on, but your other option is to re-install Python and look for an option to install the context menu/shell extensions. It's probably in there, just off by default.
1
It would be helpful to include the essential parts of the linked page so your answer can be useful even when the other page goes down.
– Twisty Impersonator
Feb 7 at 1:13
add a comment |
I don't know where your context menu items went but you can fix them by following the steps here “Edit with IDLE” option missing from context menu Only do that if you're comfortable messing around with the registry though.
I do not have a Windows computer to try this on, but your other option is to re-install Python and look for an option to install the context menu/shell extensions. It's probably in there, just off by default.
I don't know where your context menu items went but you can fix them by following the steps here “Edit with IDLE” option missing from context menu Only do that if you're comfortable messing around with the registry though.
I do not have a Windows computer to try this on, but your other option is to re-install Python and look for an option to install the context menu/shell extensions. It's probably in there, just off by default.
answered May 26 '17 at 20:05
MateoMateo
1612
1612
1
It would be helpful to include the essential parts of the linked page so your answer can be useful even when the other page goes down.
– Twisty Impersonator
Feb 7 at 1:13
add a comment |
1
It would be helpful to include the essential parts of the linked page so your answer can be useful even when the other page goes down.
– Twisty Impersonator
Feb 7 at 1:13
1
1
It would be helpful to include the essential parts of the linked page so your answer can be useful even when the other page goes down.
– Twisty Impersonator
Feb 7 at 1:13
It would be helpful to include the essential parts of the linked page so your answer can be useful even when the other page goes down.
– Twisty Impersonator
Feb 7 at 1:13
add a comment |
The problem most likely stems from overwriting the Python.File
filetyp with a user choice on how to open a file. I could fix it on my system using the registry editor of Windows (Win+R, then enter regedit
and press enter) as follows:
- Delete all user choice entries for
.py
and.pyw
in the registry
for example there is most likely an entry at
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerFileExts.pyUserChoice
- Correct/extend these two entries as follows
for .py
files:
[HKEY_CLASSES_ROOTPython.File]
@="Python File"
[HKEY_CLASSES_ROOTPython.FileDefaultIcon]
@=""C:\Windows\py.exe",1"
[HKEY_CLASSES_ROOTPython.FileShell]
[HKEY_CLASSES_ROOTPython.FileShelleditwithidle]
"MUIVerb"="Edit with IDLE"
[HKEY_CLASSES_ROOTPython.FileShelleditwithidlecommand]
@=""C:\python3\pythonw.exe" -m idlelib "%L" %*"
[HKEY_CLASSES_ROOTPython.FileShellopen]
[HKEY_CLASSES_ROOTPython.FileShellopencommand]
@=""C:\Windows\py.exe" "%L" %*"
and for .pyw
files:
[HKEY_CLASSES_ROOTPython.NoConFileDefaultIcon]
@=""C:\Windows\py.exe",1"
[HKEY_CLASSES_ROOTPython.NoConFileShell]
[HKEY_CLASSES_ROOTPython.NoConFileShelleditwithidle]
"MUIVerb"="Edit with IDLE"
[HKEY_CLASSES_ROOTPython.NoConFileShelleditwithidlecommand]
@=""C:\python3\pythonw.exe" -m idlelib "%L" %*"
[HKEY_CLASSES_ROOTPython.NoConFileShellopen]
[HKEY_CLASSES_ROOTPython.NoConFileShellopencommand]
@=""C:\Windows\pyw.exe" "%L" %*"
Then you should get a working option "Edit with IDLE" whenever you right-click on .py
or a .pyw
file in the file explorer. Double-clicking or opening the file involves the python launcher and directly starts the program.
add a comment |
The problem most likely stems from overwriting the Python.File
filetyp with a user choice on how to open a file. I could fix it on my system using the registry editor of Windows (Win+R, then enter regedit
and press enter) as follows:
- Delete all user choice entries for
.py
and.pyw
in the registry
for example there is most likely an entry at
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerFileExts.pyUserChoice
- Correct/extend these two entries as follows
for .py
files:
[HKEY_CLASSES_ROOTPython.File]
@="Python File"
[HKEY_CLASSES_ROOTPython.FileDefaultIcon]
@=""C:\Windows\py.exe",1"
[HKEY_CLASSES_ROOTPython.FileShell]
[HKEY_CLASSES_ROOTPython.FileShelleditwithidle]
"MUIVerb"="Edit with IDLE"
[HKEY_CLASSES_ROOTPython.FileShelleditwithidlecommand]
@=""C:\python3\pythonw.exe" -m idlelib "%L" %*"
[HKEY_CLASSES_ROOTPython.FileShellopen]
[HKEY_CLASSES_ROOTPython.FileShellopencommand]
@=""C:\Windows\py.exe" "%L" %*"
and for .pyw
files:
[HKEY_CLASSES_ROOTPython.NoConFileDefaultIcon]
@=""C:\Windows\py.exe",1"
[HKEY_CLASSES_ROOTPython.NoConFileShell]
[HKEY_CLASSES_ROOTPython.NoConFileShelleditwithidle]
"MUIVerb"="Edit with IDLE"
[HKEY_CLASSES_ROOTPython.NoConFileShelleditwithidlecommand]
@=""C:\python3\pythonw.exe" -m idlelib "%L" %*"
[HKEY_CLASSES_ROOTPython.NoConFileShellopen]
[HKEY_CLASSES_ROOTPython.NoConFileShellopencommand]
@=""C:\Windows\pyw.exe" "%L" %*"
Then you should get a working option "Edit with IDLE" whenever you right-click on .py
or a .pyw
file in the file explorer. Double-clicking or opening the file involves the python launcher and directly starts the program.
add a comment |
The problem most likely stems from overwriting the Python.File
filetyp with a user choice on how to open a file. I could fix it on my system using the registry editor of Windows (Win+R, then enter regedit
and press enter) as follows:
- Delete all user choice entries for
.py
and.pyw
in the registry
for example there is most likely an entry at
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerFileExts.pyUserChoice
- Correct/extend these two entries as follows
for .py
files:
[HKEY_CLASSES_ROOTPython.File]
@="Python File"
[HKEY_CLASSES_ROOTPython.FileDefaultIcon]
@=""C:\Windows\py.exe",1"
[HKEY_CLASSES_ROOTPython.FileShell]
[HKEY_CLASSES_ROOTPython.FileShelleditwithidle]
"MUIVerb"="Edit with IDLE"
[HKEY_CLASSES_ROOTPython.FileShelleditwithidlecommand]
@=""C:\python3\pythonw.exe" -m idlelib "%L" %*"
[HKEY_CLASSES_ROOTPython.FileShellopen]
[HKEY_CLASSES_ROOTPython.FileShellopencommand]
@=""C:\Windows\py.exe" "%L" %*"
and for .pyw
files:
[HKEY_CLASSES_ROOTPython.NoConFileDefaultIcon]
@=""C:\Windows\py.exe",1"
[HKEY_CLASSES_ROOTPython.NoConFileShell]
[HKEY_CLASSES_ROOTPython.NoConFileShelleditwithidle]
"MUIVerb"="Edit with IDLE"
[HKEY_CLASSES_ROOTPython.NoConFileShelleditwithidlecommand]
@=""C:\python3\pythonw.exe" -m idlelib "%L" %*"
[HKEY_CLASSES_ROOTPython.NoConFileShellopen]
[HKEY_CLASSES_ROOTPython.NoConFileShellopencommand]
@=""C:\Windows\pyw.exe" "%L" %*"
Then you should get a working option "Edit with IDLE" whenever you right-click on .py
or a .pyw
file in the file explorer. Double-clicking or opening the file involves the python launcher and directly starts the program.
The problem most likely stems from overwriting the Python.File
filetyp with a user choice on how to open a file. I could fix it on my system using the registry editor of Windows (Win+R, then enter regedit
and press enter) as follows:
- Delete all user choice entries for
.py
and.pyw
in the registry
for example there is most likely an entry at
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerFileExts.pyUserChoice
- Correct/extend these two entries as follows
for .py
files:
[HKEY_CLASSES_ROOTPython.File]
@="Python File"
[HKEY_CLASSES_ROOTPython.FileDefaultIcon]
@=""C:\Windows\py.exe",1"
[HKEY_CLASSES_ROOTPython.FileShell]
[HKEY_CLASSES_ROOTPython.FileShelleditwithidle]
"MUIVerb"="Edit with IDLE"
[HKEY_CLASSES_ROOTPython.FileShelleditwithidlecommand]
@=""C:\python3\pythonw.exe" -m idlelib "%L" %*"
[HKEY_CLASSES_ROOTPython.FileShellopen]
[HKEY_CLASSES_ROOTPython.FileShellopencommand]
@=""C:\Windows\py.exe" "%L" %*"
and for .pyw
files:
[HKEY_CLASSES_ROOTPython.NoConFileDefaultIcon]
@=""C:\Windows\py.exe",1"
[HKEY_CLASSES_ROOTPython.NoConFileShell]
[HKEY_CLASSES_ROOTPython.NoConFileShelleditwithidle]
"MUIVerb"="Edit with IDLE"
[HKEY_CLASSES_ROOTPython.NoConFileShelleditwithidlecommand]
@=""C:\python3\pythonw.exe" -m idlelib "%L" %*"
[HKEY_CLASSES_ROOTPython.NoConFileShellopen]
[HKEY_CLASSES_ROOTPython.NoConFileShellopencommand]
@=""C:\Windows\pyw.exe" "%L" %*"
Then you should get a working option "Edit with IDLE" whenever you right-click on .py
or a .pyw
file in the file explorer. Double-clicking or opening the file involves the python launcher and directly starts the program.
answered Mar 5 at 14:01
Peter B.Peter B.
1364
1364
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%2f1213238%2fedit-with-idle-missing-using-windows-10%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