Goolmoos
Goolmoos

Reputation: 199

I accidentally downloaded PyCharm with Python 3. How can I change it to Python 2?

I accidentally downloaded PyCharm and chose Python 3 when I meant to choose Python 2.7. How can I change it to Python 2.7?

Upvotes: 0

Views: 67

Answers (1)

Elazar
Elazar

Reputation: 21645

Steps:

  1. Make sure you have Python2 installed. Download and install if needed.
  2. File -> Default Settings -> Project interpreter: choose Python2.7

If it's not listed, add it.

See configuring python interpreter on the PyCharm website.

Upvotes: 4

Related Questions