其中一个环境需要安装 Postgres15。当前服务器上的操作系统是 Ubuntu 20.04.6 LTS (Focal Fossa)。我不确定 Postgres15 是否与此兼容
其中一个环境需要安装 Postgres15。当前服务器上的操作系统是 Ubuntu 20.04.6 LTS(Focal Fossa)。我不确定 Postgres15 是否与此版本的 Ubuntu 兼容,或者我是否应该使用较新的版本之一。请提供建议。
apt install postgres15
我正在尝试在 UBUNTU(版本 22.04.4 LTS)上更新节点,并按照其网站上的官方程序进行操作:# 安装 nvm(节点版本管理器)curl -o- https://raw.githubusercontent.com/n...
我正在尝试在 UBUNTU(版本 22.04.4 LTS)上更新节点,并按照其网站上的官方程序进行操作:
# installs nvm (Node Version Manager)
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
# download and install Node.js (you may need to restart the terminal)
nvm install 21
# verifies the right Node.js version is in the environment
node -v # should print `v21.7.3`
# verifies the right NPM version is in the environment
npm -v # should print `10.5.0`
一开始一切似乎都正常,给了我 node 和 npm 的确切版本。但关闭并重新打开终端后,它给了我 node 的版本: v23.0.0-nightly2024071586415e4688
正如 npm version 所说:
npm warn cli npm v10.8.2 does not support Node.js v23.0.0-nightly2024071586415e4688. This version of npm supports the following node versions: `^18.17.0 || >=20.5.0`. You can find the latest version at https://nodejs.org/.
10.8.2
如果我复制并粘贴了官方网站要求使用的命令,怎么会发生这样的事情呢?我该如何解决?我尝试删除并重复相同的过程,但得到的结果与上述相同,我尝试重新启动电脑并使用较新版本重复此操作但没有任何效果,我尝试使用较旧版本重复此操作...我总是遇到同样的问题!