Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在玩 Google Colaboratory,并立即注意到tqdm未预装的蝙蝠。有没有办法安装额外的软件包?
tqdm
是的。您可以根据需要使用pip或apt安装软件包。
pip
apt
一个例子pip是在欢迎笔记本中:
!pip install -q matplotlib-venn from matplotlib_venn import venn2 venn2(subsets = (3, 2, 1))
片段apt中的一个示例:
!apt update && apt install -y libfluidsynth1
在 tdqm 的情况下,!pip install tqdm为我工作。
!pip install tqdm
是的,要安装 tqdm,您可以使用
希望这可以帮助。