Make python package available as default?
Answered
Is it possible to make sure that a python package (in this case pygame) is installed by default when a user starts pycharm for the first time?
That is, when users starts pycharm for the first time they should be able to execute:
import pygame
in the Python console.
Please sign in to leave a comment.
Hi, you have to manually install pygame on the interpreter which is going to be used in PyCharm to make it available.
OK, thanks for the info.