specify build path

Is there a way to specify a build path so that all the pyc files do not get mixed in with my source files
0
1 comment
This is really a Python question, not specific to PyCharm. Since Python 3.2, .pyc files are stored in separate __pycache__ directories.

Note that PyCharm by default hides the .pyc files from everywhere, so they shouldn't bother you at all.
0

Please sign in to leave a comment.