我正在安装sylius bundle,同时安装sylius,我需要运行纱线安装 当我运行命令时:

yarn install

我得到了错误:

ERROR: [Errno 2] No such file or directory: 'install'

我在Ubuntu 17.04上也遇到了同样的问题。

这个解决方案对我很有效:

sudo apt remove cmdtest
sudo apt remove yarn
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update
sudo apt-get install yarn -y

then

yarn install

结果:

yarn install v1.3.2
warning You are using Node "6.0.0" which is not supported and may encounter bugs or unexpected behaviour. Yarn supports the following server range: "^4.8.0 || ^5.7.0 || ^6.2.2 || >=8.0.0"
info No lockfile found.
[1/4] Resolving packages...
[2/4] Fetching packages...
[3/4] Linking dependencies...
[4/4] Building fresh packages...

info Lockfile not saved, no dependencies.
Done in 0.20s.

注意:这个解决方案在Ubuntu 16.04, Ubuntu 17.04和Ubuntu 18.04上都能很好地工作。

尝试删除现有的cmdtest和yarn(这是*nix系统的遗留黑盒命令行工具的模块):

sudo apt remove cmdtest
sudo apt remove yarn

通过npm简单安装

npm install -g yarn

OR

sudo npm install -g yarn

现在纱线已经安装好了。执行命令。

yarn install sylius

我希望这能奏效。干杯!

编辑:

请记住重新打开终端以使更改生效。


为Ubuntu 16.04安装Yarn(不确定这是否会与14.04相同,因为它与zappee对17.04的回答略有不同)

curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
curl -sL https://deb.nodesource.com/setup_9.x | sudo -E bash -
apt-get update
apt-get install nodejs
apt-get install yarn

然后从你安装sylius项目的地方(/var/www/mysite)

yarn install
yarn run gulp

这对我很有效

sudo yarn install

我在Ubuntu 18.04上也遇到了同样的问题。这对我来说很管用:

我去掉了cmdtest和纱线

sudo apt remove cmdtest

sudo apt remove yarn

使用npm全局安装yarn

sudo npm install -g yarn

sudo npm install -g yarnpkg
npm WARN deprecated yarnpkg@0.15.1: Please use the `yarn` package instead of `yarnpkg`

这对我来说是可行的

sudo npm install -g yarn

也有此问题(windows),修复是完全关闭所有终端实例,然后重试。


博士TL; //运行这些命令(在Ubuntu 17.04及以上版本上测试) curl - ss https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - 回显"deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list Sudo apt-get update && Sudo apt-get install yarn

额外提示:查看官方文档/指南,在其他Ubuntu版本上安装yarn &注意额外的cmdtest错误。https://yarnpkg.com/lang/en/docs/install/#debian-stable

如果你没有安装curl,你可以使用sudo apt install curl安装它


对于Ubuntu 18.04.4 LTS,我只是遵循官方说明: https://classic.yarnpkg.com/en/docs/install#debian-stable

curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list

sudo apt update && sudo apt install yarn

不需要做:

sudo apt remove cmdtest

这只在Ubuntu 17.04上是必需的。我想。

我希望这能有所帮助!


所有正确建议删除Ubuntu yarn包并通过NPM安装yarn的答案都值得称赞,下面是一个详细的答案和解释(注意,还有意见):

从yarn安装中出现No such file or directory错误的原因是您没有使用“正确的”yarn:当您使用Ubuntu软件源安装yarn时,您得到的软件是来自cmdtest黑盒测试套件的“yarn”场景测试工具。这可能不是你的意思,因为Yarn也是Javascript应用程序的流行开发生命周期工具(类似于Make、Maven等)。

Javascript Yarn工具在Ubuntu软件源中是不可用的,但是可以通过NPM安装(NPM是Yarn想要取代的另一个开发生命周期工具——所以这很尴尬…)

要让Yarn在Ubuntu中可用,首先要删除cmdtest及其工具:

$ sudo apt purge cmdtest

然后确保NPM已经安装:

$ sudo apt install npm

然后使用NPM安装Yarn:

$ npm install -g yarn

Note: using npm install -g will install a Javascript package for your current user account, which should be fine for most purposes. If you want to install Yarn for all users, you can use sudo for the NPM command, but that is not recommended: NPM packages are rarely audited for security in the context of a multi-user operating system and installing some packages might even break when installing them as "root". NPM used to warn against running it with sudo and the main reason it is not doing so today is that it annoys people that use sandboxed "root-like" environments (such as Docker) for building and deploying Javascript applications for single-user servers.


Run:

source ~/.profile 

再试一次


我的解决方案是

curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -

echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list

sudo apt-get update && sudo apt-get install yarn

我相信所有相关的解决方案都已经提供了,但这里有一个微妙的情况:知道如果你不关闭并再次打开你的终端,你将不会看到效果。

关闭终端并打开 然后输入你的终端

纱,版本

干杯!


尝试以上步骤,在Ubuntu 20上无效。 对于Ubuntu 20,像上面建议的那样删除cmdtest和yarn。使用以下命令安装纱线:

curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -

echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list

sudo apt update && sudo apt install yarn

在你的终端上复制并粘贴这段代码 这对我来说非常有效。

sudo apt remove cmdtest
sudo apt remove yarn
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update
sudo apt-get install yarn -y

下面的步骤对Pop!_OS 20.10 & ubuntu 20.04

Sudo应该删除cmdtest 须藤易脱纱 curl - ss https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - 回显"deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list Sudo apt-get update Sudo apt-get install yarn -y 线安装


我以不同的方式安装了yarn,当我在控制台运行yarn时,它通知我“bash: /usr/bin/yarn:文件或目录不存在”。 我转到路径/usr/bin,我找到的二进制文件是yarnpkg。 我在控制台中运行yarnpkg,它安装了所有依赖项。 注意:所有yarn命令都使用yarnpkg。如果你有任何问题,我们将继续在论坛上看到他们


yarn包(目前是cmdtest包的别名)的名称冲突。你要找的包装是yarnpkg。所以,试试这个命令:

sudo apt-get remove cmdtest
sudo apt-get install yarnpkg

不幸的是,在yarnpkg中,命令纱被命名为yarnpkg。你可能想要创建一个别名:

sudo ln -s /usr/bin/yarnpkg /usr/local/bin/yarn

如果您正在尝试部署到AWS或任何其他云基础设施,请遵循下面的链接

linux化这将有助于解决AWS上的纱线问题,但仍然存在构建时间问题。


如果您的节点版本高于16.10。您可以简单地运行以下命令来使用yarn命令。

corepack启用

如果您的节点版本为16.10之前。执行上述命令前请先执行npm i -g corepack。


使用Ubuntu 22.04 我在新安装Ubuntu时遇到了这个问题。对我有效的解决方法是:

sudo apt remove cmdtest
sudo apt-get remove yarn && sudo apt-get purge yarn
sudo apt update
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt install yarn
yarn --version # 1.22.19

(编辑:我后来尝试了这个方法,最初并没有奏效。但是当我重新启动电脑再试一次时,它还是工作了。想想看…)


删除错误包:

sudo apt-get purge cmdtest
sudo apt-get purge yarn

使用npm安装(推荐方式):

建议通过npm包管理器安装Yarn,当你在你的系统上安装它时,npm包管理器与Node.js捆绑在一起。

一旦你安装了npm,你可以运行以下命令来安装和升级Yarn:

npm install --global yarn

替代方法:

Debian / Ubuntu

curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt update && sudo apt install yarn

我在ubuntu操作系统上也有同样的问题,我用sudo yarn install而不是yarn install解决了这个问题


我找到了这个解决方案,因为上面的方法都不适合我。 在我的情况下,现有文件和下载文件之间存在冲突,因此为了解决这个问题,我在linux上执行了以下命令。

sudo mv /var/lib/dpkg/info /var/lib/dpkg/info_silent

Sudo mkdir /var/lib/dpkg/info

Sudo apt-get update

Sudo apt-get -f install <xxxx> .使用实例

<xxxx>替换为需要的包