linux系統下手動安裝Angular cli

2022-08-27 23:36:11 字數 1556 閱讀 4113

由於公司linux伺服器沒有外網,無法通過npm包管理器直接安裝,只能手動安裝乙個angular-cli平台環境!

1. 先再linux系統下安裝好nodejs和npm。(重點是angular-cli的安裝,node的安裝不再此說明)

2. window系統下操作

2.1 在window系統下全域性安裝angular cli

npm install -g @angular/cli
2.2 如果安裝不成功先安裝typescript,typings,因為angular-cli是用typescript寫的

npm install -g typescript typings
3. window系統下安裝檔案遷移到linux系統

找到npm全域性安裝路徑,可輸入如下命令檢視

npm config list
進入此全域性安裝路徑,把node_modules資料夾下的如下圖所示的3個資料夾全部複製到linux系統下npm全域性安裝路徑下(檢視路徑方式一樣輸入npm config list找到prefix屬性所指向的路徑)

4. 設定系統命令(linux系統下操作)

檔案複製到linux系統下npm全域性安裝路徑下後,接下來就是設定系統命令了

4.1 設定ng系統命令

sudo ln -s /usr/ceba/node_global/node_modules/@angular/cli/bin/ng /usr/local/bin/ng
4.2 設定typings系統命令

sudo ln -s /usr/ceba/node_global/node_modules/typings/dist/bin.js /usr/local/bin/typings
說明:在window系統下安裝typings時就可以發現typings命令指向的檔案是typings/dist/bin.js,如下圖所示

4.3 設定tsc系統命令

sudo ln -s /usr/ceba/node_global/node_modules/typescript/bin/tsc /usr/local/bin/tsc

/usr/ceba/node_global/node_modules/:npm全域性安裝路徑
/usr/local/bin/ 系統命令路徑
5.設定許可權

切換到/usr/local/bin/系統命令路徑下分別設定ng tsc typings命令可執行許可權

chmod

777ng

chmod

777typings

chmod

777 tsc

6.輸入ng -version檢視驗證

Linux下手動安裝screen

簡單說來就是自己用screen原始碼編譯安裝 now please check the pathnames in the makefile and inthe user configuration section in config.h.then type make to make screen.g...

linux下手動安裝apache

下面是官方文件的要求,必須安裝apr apr util pcre,gcc c 等包,文件url位址 所以,沒有這些支援的需要提前安裝好不然會出現個各種錯誤。tar zxvf apr util 1.6.1.tar.gz cd apr util 1.6.1 configure prefix usr lo...

linux下手動安裝nginx

yum install y gcc c yum install y pcre pcre devel yum install y zlib zlib devel yum install y openssl openssl devel linux系統不同可能這些命令會有所差異。因為配置不高,也沒伺服器,...