Idle and Anaconda

18,641

Solution 1

Search for this folder "idlelib" in the Lib folder of the Anaconda version you have installed and you will find idle (check its file type: "compiled python file").
Pin it to your taskbar and run.

Solution 2

You are looking for C:\... <\> ...Anaconda3\Lib\idlelib\idle.bat

There is also C:\ ... <\> ...Anaconda3\Scripts\idle.exe which seems to run a little smoother, but there has to be a Command Prompt open in the background to run. ... ?

Navigate to your Anaconda3 installation folder. Yours could be anywhere, mine is at "C:\ProgramData\Anaconda3", but I installed for all users and you could have selected a random location on your drive. If you managed to add it to the environment variables you could easily find it by running the Command Prompt (not Powershell - has to be Command Prompt) and typing where conda or where anaconda and pressing enter. You should find a folder named Anaconda3 or something of that nature.

If you navigate to this folder, and within it find the "Anaconda3\Lib\idlelib\" folder, within it there is a file called "idle.bat". If you find this "Anaconda3\Lib\idlelib\idle.bat" file you can double click it to run IDLE, although it may be a little messy/outdated/glitchy/strange since you are updating all kinds of folders within Anaconda and some of them may have helped idle.bat run. Mine has a the spyder icon associated with it in the task bar and a blotted out IDLE icon in the top left corner for some reason. You could of course run the full path in command prompt as well if you already know where it is, for instance I would run...

C:\Users\Thomas>C:\ProgramData\Anaconda3\Lib\idlelib\idle.bat ~or~ C:\Users\Thomas>C:\ProgramData\Anaconda3\Scripts\idle.exe

--> It may be easier to just download a new version of Python side by side with Anaconda to run IDLE. I have been attempting to set a shortcut in the Start Menu that runs from anaconda properly for days and have failed. This way, there should be a right click>'run with IDLE' option for python files.

I believe the tilde slash (~/) was meant to imply your home directory since that is what it signifies on a linux machine, but seeing as you could have put it anywhere on the machine, even directly on the C:\ drive, maybe he meant 'unknown file path'.

Share:
18,641

Related videos on Youtube

AlleyCat
Author by

AlleyCat

Updated on July 15, 2022

Comments

  • AlleyCat
    AlleyCat almost 2 years

    I use to have idle. Then I downloaded Anaconda and opened idle through there. I have not used idle for a while but just recently went to go open it up and use it again. However, it seems I no longer have idle on my computer, to my understanding I can still get to idle through Anaconda but I forgot how. Is there a way to open idle through Anaconda without re-downloading idle? If so what command can I use to pull Idle up?

    • juanpa.arrivillaga
      juanpa.arrivillaga almost 6 years
      try ~/anaconda3/bin/idle if you have anaconda 3. Or if you want an IDLE from a specific environment, ~/anaconda3/envs/my_env/bin/idle3 (if it is a Python 3 environment)
  • boardtc
    boardtc about 5 years
    This is the perfect answer to the question that was asked.