Colaboratory:如何安装PyGame学习环境
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Colaboratory:如何安装PyGame学习环境相关的知识,希望对你有一定的参考价值。
在Colaboratory,我们被迫使用pip安装。第三个包,如健身房,PLE等,他们的安装应该是
git clone https://github.com/ntasfi/PyGame-Learning-Environment.git
cd PyGame-Learning-Environment/
pip install -e .
当我尝试时,这里有一些问题:
1)!cd
在这里不起作用。我仍然在谷歌硬盘中的当前文件夹中。
2)相反,我直接运行:
!git clone https://github.com/ntasfi/PyGame-Learning-Environment.git
!pip install -e PyGame-Learning-Environment
它说成功安装,但我无法导入它。我检查了它并没有出现在/usr/local/lib/python3.6/dist-packages
我还检查了python:
import os
print(os.getcwd())
这给了我:/content
,一个我不明白的目录。显然我无法导入包。
我该怎么办?
答案
这是一个有效的例子:https://colab.research.google.com/drive/1PsPArPkxnhCIKSFK2gDA46_vnLMc1U9z
提示:
- 使用
os.chdir
而不是!cd
。!
命令在子shell中执行,因此它们的效果不适用于后续命令。然而,os.chdir
将会。 - 您要检查
sys.path
而不是site-packages,因为您正在使用-e
进行安装。 - 你还需要安装
pygame
。看起来这是一个未列出的dep。
完整安装配方:
import os
!git clone https://github.com/ntasfi/PyGame-Learning-Environment.git
os.chdir('PyGame-Learning-Environment')
!pip install -e .
!pip install pygame
os.chdir('/content')
以上是关于Colaboratory:如何安装PyGame学习环境的主要内容,如果未能解决你的问题,请参考以下文章
如何在colaboratory(colab研究)中改变字体大小?
Windows系统下如何安装Python以及对应pygame
在 Google Colaboratory Notebook 上安装 GeoViews