File size

Answered

Hi I am working with a file in free version of Pycharm for students. I can not open a file for training purposes which is 8.0 MB in size whereas the file limitation for Pycharm is 2.56 MB. Please let me know how to solve this issue. I need to submit my assignment by Tuesday Morning.

0
2 comments

Hi Chadhaa! Is this file a Python script? You can alter default limit with Help | Edit Custom Properties, insert

#---------------------------------------------------------------------
# Maximum file size (kilobytes) IDE should provide code assistance for.
# The larger file is the slower its editor works and higher overall system memory requirements are
# if code assistance is enabled. Remove this property or set to very large number if you need
# code assistance for any files available regardless their size.
#---------------------------------------------------------------------
idea.max.intellisense.filesize=2500

#---------------------------------------------------------------------
# Maximum file size (kilobytes) IDE is able to open.
#---------------------------------------------------------------------
idea.max.content.load.filesize=20000

and increase value for content.load.

1

Thanks Pavel Karateev, — it works for me!

0

Please sign in to leave a comment.