How to open python with idle in Anaconda

I don’t know if you have ever been bothered. Because the Anacondasoftware was downloaded directly , and the Spydercompiler was installed in a virtual environment . But because it pythonis not Pycharminstalled independently like a compiler, so every time I want to use the pythonbuilt-in one idle, I don't know where to look for it. Today we will talk about how Anacondato open the pythonbuilt-in idlecompiler in.
Step 1: Open Anaconda Powershell Prompt (anaconda)
Open Anaconda Powershell Prompt (anaconda) open method
Step 2: Input idle, as shown below

idle input
Step 3: Press the Enter(回车键)completed idleOpen, the opening result is shown in the figure below.
result
However, this way of opening the built- idlein has a drawback, we can see that we open idleit in the baseenvironment, which means that we can only use basethe modules that have been installed in the environment, so if we want to use our modules need to be used before the second step conda activate + (虚拟环境名)to activate our common virtual environment, and open in the active virtual environment idle, so you can use the module we want to use.

If you find it useful, please raise your hand and give a thumbs up so that more people can see it~

Guess you like

Origin blog.csdn.net/u011699626/article/details/108691652