Is there a way for me to configure PyCharm to run shell_plus instead of the default shell?
I\'ve tried putting the text of the manage command in the \'Starting scr
One way to solve this is to create a new Python run configuration. Set the target to module, and select the manage.py
file for the project. Then put shell_plus
in the Parameters field. Set the Working Directory to the project directory. Then lastly, set the Execution to Run with Python Console
. Apply the changes, then run the new configuration.