annaconda python環境快速搭建

  1. 1. 1.下載
  2. 2. 2. 安裝
    1. 2.0.1. 1.一鍵安裝Anaconda
    2. 2.0.2. 2.Anaconda Navigator
    3. 2.0.3. 3.使用conda prompt
    4. 2.0.4. 4.IPython
    5. 2.0.5. 5.使用spyder
  • 3. 3.模組
    1. 3.0.1. 1.Anaconda 32bit- with python2.7
    2. 3.0.2. 2.Archook Arcpy
  • 4. 4.基本操作
    1. 4.0.1. 1.if
    2. 4.0.2. 2.for
    3. 4.0.3. 3.list, array,tuple
  • 5. 5.常用模組
    1. 5.0.1. 1.shapefile
    2. 5.0.2. 2.math,csv
    3. 5.0.3. 3.繪圖matplotlib
  • annoconda快速搭建

    1.下載


    首先去annconda官網下載
    選擇x64環境或是x86之安裝檔
    例如要跑arcpy必須在x86 環境執行
    經測試x86 跟x64 annaconda可以並存

    2. 安裝

    1.一鍵安裝Anaconda

    2.Anaconda Navigator

    • 設定環境(例如設定python2.7, python3.6環境)

    3.使用conda prompt

    • pip install 可擴充相關模組

    4.IPython

    • 逐行操作

    5.使用spyder

    • run, variable viewer

    3.模組

    1.Anaconda 32bit- with python2.7

    2.Archook Arcpy

    • 找尋環境中的python路徑 -Github Githook
    • pip install archook
      1
      2
      3
      4
      5
      6
      python=1
      import archook #The module which locates arcgis
      archook.get_arcpy()
      import arcpy

      #下面就可以寫python了#

    4.基本操作

    1.if

    2.for

    3.list, array,tuple

    ============================

    5.常用模組

    1.shapefile

    2.math,csv

    3.繪圖matplotlib