Reputation: 11
How does one create a python file from pycharm terminal.In VS Code they use "code {name}" so I want something similar to that but in pycharm.
I am getting an error "zsh:command not found:code"
Upvotes: 0
Views: 1262
Reputation: 18
Upvotes: 0
Reputation: 431
you can create a python file from the pycharm terminal just by typing
touch myPythonFile.py
Upvotes: 3