iT邦幫忙

0

請問使用Google Colab要怎麼下載Fbprophet

  • 分享至 

  • xImage
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 個回答

1
re.Zero
iT邦研究生 5 級 ‧ 2023-01-25 16:46:37

如果你只是要在 Colab 內下載外部檔案,可用 !wget!curl 命令。

若你是想安裝 fbprophet (@pypi),請確認 Installation in Python - PyPI release 的內容:

  • From v0.6 onwards, Python 2 is no longer supported.
  • As of v1.0, the package name on PyPI is "prophet"; prior to v1.0 it was "fbprophet".
  • As of v1.1, the minimum supported Python version is 3.7.

在確認上述內容後,你確定你想要裝 fbprophet ,而不是 prophet

補充, google-colab 目前已裝有 prophet==1.1.1 了喔。


P.S. 若你依然想安裝 fbprophet

!pip install 'pystan<3'
!pip install 'fbprophet'

但會出現 Python packages 之間的相依性問題,請自行判斷、處理。

jeffeux iT邦新手 4 級 ‧ 2023-01-30 15:59:41 檢舉

如果擔心 dependency 跑掉什麼的,直接

!pip install 'pystan<3' 'fbprophet'  # 可以一行寫多條

pip 會在同一次 install 內確認彼此的版本 dependency

我要發表回答

立即登入回答