How to close one of several opened projects in PyCharm?

Viewed 1438

I have opened 2 projects in one PyCharm window. Projects are dependent.

When I close and then open one of the projects, the other one opens too. Even after I removed the dependency.

How to detach them now? How to close one of the projects?

1 Answers

From Deleting a project from view:

If you want to close a project that has been added to the currently opened one (primary project), follow these steps:

  1. In the Project Tool Window, right-click the project to be deleted.
  2. On the context menu of the selection, choose Remove from Project View, or just press Delete:

enter image description here

You might find the entire Opening Multiple Projects of interest.

Related