Windows10安裝與配置atom

借鑑前輩經驗,寫的本身安裝的東西,以備下次新電腦上要安裝。css

 

1. 去atom官網下載「AtomSetup-x64.exe」,選這個版本的緣由是它是安裝版,有文件路徑,方便後面配置環境變量;html

2. 配置環境變量。依次打開 ---控制面板\系統和安全\系統\高級系統設置\高級\環境變量\系統變量,將atom的安裝路徑(C:\Users\himb\AppData\Local\atom)添加到path裏面去;vue

3. 安裝擴展包。這個atom的插件真是至關多,而因爲衆所周知的緣由,客戶端裏的install按鈕點了莫得反應,因此就須要手動安裝。網上給了幾種方法,我試了下,下面寫我可用的方法:python

  1)去atom官網擴展區找到可用的包,而後依下圖找到這個包的GitHub路徑,從cmd裏安裝git

 

  2)cmd裏的安裝方法,切換到atom的擴展包文件路徑github

    cd C:\Users\himb\.atom\packagesapi

    

 1 cd C:\Users\himb\.atom\packages
 2 
 3 apm install https://github.com/Glavin001/atom-beautify.git     #atom-beautify
 4 apm install https://github.com/AtomLinter/linter-eslint.git    #linter-eslint
 5 
 6 apm install https://github.com/steelbrain/linter.git    #linter
 7 apm install https://github.com/sharvil/api-docs.git    #api-docs
 8 apm install https://github.com/emmetio/emmet-atom.git    #emmet-atom
 9 
10 apm install https://github.com/platformio/platformio-atom-ide-terminal.git    #platformio-atom-ide-terminal
11 apm install https://github.com/rgbkrk/atom-script.git       #script
12 apm install https://github.com/foreshadow/atom-python-run.git    #atom-python-run
13 
14 apm install https://github.com/nteract/hydrogen.git    #hydrogen

注意,這裏的安裝的都是apm install +包的連接。也能夠下載下來,而後使用apm install +包名進行安裝,我這裏有得回報錯,就不用了。安全

 

這樣的話,基本是能用了。可是有一點,script來run的話(快捷鍵是Ctrl+shift+b),是不能input的,須要另外一個擴展來實現,atom-python-run(快捷鍵是F5)。也有用jupyter來run的,試了下,這個安裝很麻煩,另外對於input也不友好(我遇到是這樣的),就放棄了。ide

  #附一下我今天裝的包名稱,不知道好很差用。ui

atom-ide-vue

atom-python-run

emmet-atom

kite

linter-eslint

script

api-docs

atom-beautify

atom-ide-ui

ide-python

linter

linter-csslint

linter-htmlhint

minimap

regex-railroad-diagram

simplified-chinese-menu

 

2020.03.26補充

新建頁面會提示‘he package spell-check cannot load the system dictionary for zh-CN. See the settings for ways of changing the languages used, resolving missing dictionaries, or hiding this warning.’

有點煩,查了下,是拼寫檢查上的問題。

依次打開files\setting\packages\core packages\spell check\setting,在這裏面關閉「Use Locales」前面的勾選。

相關文章
相關標籤/搜索