Python Forum

Full Version: Idle from Windows console?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can I get the same functionality as Linux in Windows so that when I open a terminal/console/powershell/command prompt (whatever Microsoft wants to call it) I can just type "idle" and get the python ide? I already have it setup in the path. I can run python from a console. I want to be able to do what I do in linux, from a directory launch a console, type idle, and get it to run from that directory. Getting Windows to launch a console from a directory has been another pain in and of itself, but that aside, has anyone else done this?
add idle's exe path to your systems path. It would be the same here except of adding python's exe to it, you would be adding IDLE's exe path
https://geek-university.com/python/add-p...dows-path/
https://www.pythoncentral.io/add-python-...l-command/
Follow Python 3.6/3.7 and pip installation under Windows
As use see in link over from 3.6 so is there a Add Python 3.7 to Path.
This mean that python and pip are added to Path and work from anywhere in cmd.
C:\
λ python -V
Python 3.7.0
 
C:\
λ pip -V
pip 10.0.1 from c:\python37\lib\site-packages\pip (python 3.7)
Use cmder and not cmd\powershell.
Python environment Windows.