使用Miniconda 安裝py 環境

  • 首先下載Miniconda 
  • 運行Miniconda 配置清華源
     conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
     conda config --set show_channel_urls yes
  • 創建python 3.9 虛擬環境(過程中需要確認 按y鍵即可)
    conda create -n python_3.9 python=3.9
  • 觸發Python 3.9 環境
    conda activate python_3.6
  • 利用conda install命令安裝所需工具
    conda install pandas
    conda install matplotlib
    conda install scipy

     

  • 使用conda list 查看已經安裝的工具包
    發表評論
    所有評論
    還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
    相關文章