Make python package available as default?
已回答
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.
请先登录再写评论。
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.