我的目的是安装
angularjs!
为此我需要=> npm,所以我想安装nodejs有“NPM”,但我有这个错误:
File "./configure",line 16,in <module> from gyp.common import GetFlavor File "./tools/gyp/pylib/gyp/__init__.py",line 8,in <module> import gyp.input File "./tools/gyp/pylib/gyp/input.py",line 873 except ImportError as e:
可能问题是python 2.5的版本:问题是我没有权利更新python.
PLZ,如何在没有Nodejs的情况下在linux上安装npm
帮助赞赏.
问候
解决方法
首先更新系统的软件包,确保您拥有最新版本的软件包及其依赖项.
sudo apt-get update
然后安装npm(和/或nodejs,如果需要)
sudo apt-get install npm nodejs
最后,您可以使用以下命令安装angular
npm install angular
仅供参考,The best way to install npm is to install node using the node.js installer. npm作为节点的一部分安装.