TuriCreate只能在mac或linux上運行,如果你的電腦是windoes,可以考慮跟我一樣用WSL,以下是執行步驟

  1. 用系統管理員身分打開powershell,貼上以下指令: P.S記得要重新開機
    Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
    
  2. 到microsoft store載ubuntu 18
  3. 打開ubuntu設置好後,輸入以下指令
    sudo apt update && sudo apt upgrade
    
    sudo apt-get install -y libstdc++6 python-setuptools
    
    sudo apt-get install python3-pip
    
  4. 接著載虛擬環境
    sudo pip3 install virtualenv
    
    virtualenv 自己的環境名稱
    
  5. 進入虛擬環境裡,如果成功進入會顯示 (自己的環境名稱) 在前面
    source 自己的環境名稱/bin/activate
    
  6. 載jupyter notebook
    pip3 install jupyter
    
    7.用以下指令打開jupyter notebook
    jupyter notebook
    
    8.如果跳到一個powershell.exe停住,改成輸入以下指令,目的是不要讓jupyter notebook自己打開
    jupyter-notebook --no-browser
    
  7. 複製其中一個網址到瀏覽器裡就能打開了
    The Notebook is running at: 
    http://localhost:8888/?token=6b0e4a3b7493fa0686a9906c89866fd0c344ae60d8fabbba
    or 
    http://127.0.0.1:8888/?token=6b0e4a3b7493fa0686a9906c89866fd0c344ae60d8fabbba
    
  8. 接著回到虛擬環境,pip進turicreate就大功告成了
    pip3 install turicreate
    
#turicreate







你可能感興趣的文章

Reformer - The Efficient Transformer

Reformer - The Efficient Transformer

七天打造自己的 Google Map 應用入門 - Day05

七天打造自己的 Google Map 應用入門 - Day05

eslint 是什麼?

eslint 是什麼?






留言討論