在 AI Studio 上持久化安装第三方库
如果需要进行持久化安装,需要使用持久化路径,示例如下:
!mkdir /home/aistudio/external-libraries
!pip install beautifulsoup4 -t /home/aistudio/external-libraries
然后在每次环境启动的时候,运行如下的代码即可:
import sys
sys.path.append('/home/aistudio/external-libraries')