您如何让 FileLink(filename) 在 Google Colab 中工作以生成下载链接?有比 FileLink 更好的方法吗?
现在这段代码会生成一个指向 localhost 的下载链接:
import pandas as pd
from IPython.display import FileLink, FileLinks
df = pd.DataFrame([[1,2,3],[4,5,6]])
df.to_csv('mydf.csv', index=False)
FileLink('mydf.csv')
作为输出生成的链接指向:https://localhost:8080/myfile.csv
如何让它指向正确的文件?