Using PyCharm, it's possible to have multiple projects in the same window / environment. Each project has its own interpreter configuration in the Project > Python Interpreter section.
Is there an easy way to switch all projects to the same interpreter at once? The "quick switcher" in the status bar only updates whatever is considered the "current project" (the project containing the current or last open files). Switching to a single project and multiple content roots is not an option as it leads to various other problems which multiple projects solved.
The case described in the question is of having several projects opened in the same window. As described in Managing multiple projects - PyCharm documentation.
The UI currently does not offer the functionality to simultaneously change the interpreter for several projects opened in the same project window. So the only option left (besides picking the interpreter individually for each project in the
Settings>Project InterpreterUI dialogue) would be to edit the IDE project configuration files.The interpreter for each individual project is hard coded in each project's
.ideafolder inside the.imlfile, for example (some irrelevant lines truncated for legibility):project_folder\.idea\your_project_name.imlNotice in the element
<orderEntry>the attributestype="jdk"," jdkName="Python 3.8 (venv38)", etc, define the interpreter that project is set to use. By changing this line in the individual.imlfiles you are setting that project's interpreter.The list of
Python InterpretersinSettings>Project Interpreter, if you press the cog andShow All..., is populated (in Windows) from the fileC:\Users\your_user\AppData\Roaming\JetBrains\PyCharm2020.version\options\jdk.table.xmlthere you'll find the XML elements corresponding to each interpreter you've added in the past, for example (some irrelevant lines truncated for legibility):Finally, in order to change the interpreter simultaneously for all projects opened in a Project View from within the IDE, you could define a custom scope and use it in
Edit>Find>Replace in Files( or Ctrl + Shift + R) restricting the change to the.idea\your_project_name.imlfiles of your opened projects.Making the change becomes especially easy if you already set the same interpreter for all projects once. In the above example, replacing the line
<orderEntry type="jdk" jdkName="Python 3.8 (venv38)" jdkType="Python SDK" />to that of the new interpreter within the defined custom scope would effect the change in one click.