我使用命令.grid-table .tbody .tr {
display: inline-grid;
line-height: 35px;
width: 100%;
grid-template-columns: repeat(4, 1fr); /* not grid-auto-columns */
grid-auto-flow: column;
justify-items: start;
}
安装了pygame。当我进入我的python控制台并导入pygame时,它会给我pip install pygame
,然后尝试使用ImportError: No module named pygame
进行安装,但我仍面临同样的问题。我最终导致从https://bitbucket.org/pygame/pygame克隆并构建然后安装,我仍然得到导入错误。有没有其他方法可以安装pygame?
答案 0 :(得分:0)
我刚刚发现在没有 sudo 的情况下运行pip install pygame
实际上会从头开始安装所有内容,如果从python控制台运行import pygame
,现在可以导入。我不知道这种有趣行为的原因,但它现在对我有用。