Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Everytime I reboot my laptop I have to setup Django in Pycharm again. Error Please enable Django Support for the project

Tags:

django

pycharm

I'm using pycharm and everytime I restart my laptop I have to always configure the Django root folder and the settings in pycharm.

I always get this error before trying to run my django server: enter image description here

This are the fields I always have to configure:

enter image description here

like image 492
CommonSenseCode Avatar asked Mar 31 '17 10:03

CommonSenseCode


2 Answers

Remove .idea in working directory with rm -rf .idea

like image 69
IgorNikolaev Avatar answered Sep 24 '22 12:09

IgorNikolaev


My problem was in running both WebStorm and PyCharm in the same directory. Something in .idea/ got overwritten by the other IDE. Solved by using PyCharm for Django subdir only.

like image 38
AndyTheEntity Avatar answered Sep 22 '22 12:09

AndyTheEntity