You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
565 B
25 lines
565 B
[[software-node]]
|
|
= Node
|
|
== node 环境检测
|
|
[source,bash]
|
|
----
|
|
# 在命令窗口中执行
|
|
node -v
|
|
----
|
|
TIP: 如果返回了 node 的版本号, 则表示已经安装了 node 环境, 需要注意是否符合系统要求的最低版本!
|
|
|
|
== node 卸载
|
|
如果您已经安装了 node 且版本不符合系统要求, 可先卸载原有 node. 卸载方法如下:
|
|
|
|
=== mac
|
|
[source,bash]
|
|
----
|
|
# 在命令窗口中执行
|
|
node -v
|
|
----
|
|
|
|
== node 安装
|
|
从官网 (https://nodejs.org/en/download[https://nodejs.org/en/download]) 下载 node 安装包, 并进行安装。
|
|
|
|
|
|
|
|
|