다음은 Ubuntu 16.04에 노드를 설치하는 단계입니다.
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
sudo apt-get install -y nodejs
sudo apt-get install -y npm
공식적인 지침은 다음과 같습니다.
https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions
이렇게 한 후 running nodejs --version
은을 반환합니다 v4.2.6
.
내가 사용 setup_6.x
하면서 시작 버전 6
이 설치 되었다고 가정 했습니까?
아마 setup_6.x
이어야 한다고 생각 setup_6.2.1
했지만 그 페이지는 404를 반환합니다.
https://deb.nodesource.com/setup_6.x (페이지가 있습니다)
https://deb.nodesource.com/setup_6.2.1(404를 반환)
Ubuntu 16.04에 최신 안정 버전의 노드를 어떻게 설치합니까?
편집하다:
다음은 실행 후 결과입니다 sudo apt-get install -y nodejs
.
sudo apt-get install -y nodejs
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
gyp libboost-python1.58.0 libjs-inherits libjs-node-uuid libjs-underscore
libssl-dev libssl-doc libuv1-dev linux-headers-4.4.0-18
linux-headers-4.4.0-18-generic linux-headers-4.4.0-21
linux-headers-4.4.0-21-generic linux-image-4.4.0-18-generic
linux-image-4.4.0-21-generic linux-image-extra-4.4.0-18-generic
linux-image-extra-4.4.0-21-generic linux-signed-image-4.4.0-18-generic
linux-signed-image-4.4.0-21-generic python-configobj python-pycurl
python-pyexiv2 python-pyexiv2-doc
Use 'sudo apt autoremove' to remove them.
The following NEW packages will be installed:
nodejs
0 to upgrade, 1 to newly install, 0 to remove and 0 not to upgrade.
Need to get 0 B/3,162 kB of archives.
After this operation, 13.2 MB of additional disk space will be used.
Selecting previously unselected package nodejs.
(Reading database ... 329473 files and directories currently installed.)
Preparing to unpack .../nodejs_4.2.6~dfsg-1ubuntu4_amd64.deb ...
Unpacking nodejs (4.2.6~dfsg-1ubuntu4) ...
Processing triggers for doc-base (0.10.7) ...
Processing 1 added doc-base file...
Registering documents with scrollkeeper...
Processing triggers for man-db (2.7.5-1) ...
Setting up nodejs (4.2.6~dfsg-1ubuntu4) ...
update-alternatives: using /usr/bin/nodejs to provide /usr/bin/js (js) in auto mode
편집하다:
결과 apt-cache policy nodejs
:
apt-cache policy nodejs
nodejs:
Installed: 4.2.6~dfsg-1ubuntu4
Candidate: 4.2.6~dfsg-1ubuntu4
Version table:
*** 4.2.6~dfsg-1ubuntu4 500
500 http://au.archive.ubuntu.com/ubuntu xenial/universe amd64 Packages
100 /var/lib/dpkg/status
apt-cache
데이터 를 제공 하여 컴퓨터에 repos에있는 내용이 있는지 확인할 수 있으면 추가 도움을받을 수 있습니다.
apt-cache policy nodejs
질문 의 출력 결과를 편집본으로 포함 시키십시오.