Menú alternativo
Alternar el menú de preferencias
Menú alternativo personal
No has accedido
Tu dirección IP será visible si haces alguna edición

Diferencia entre revisiones de «Failed to commit transaction»

De TechShareRoom wiki
Página creada con «<syntaxhighlight lang="bash"> error: failed to commit transaction (conflicting files) python-commonmark: /usr/lib/python3.10/site-packages/commonmark-0.9.1.dist-info/LICENSE exists in filesystem </syntaxhighlight> or <syntaxhighlight lang="bash"> error: failed to commit transaction (conflicting files) node-gyp: /usr/lib/node_modules/node-gyp/node_modules/tar/node_modules/minipass/index.mjs exists in filesystem </syntaxhighlight> Solución 1: <syntaxhighlight lang=…»
 
m Texto reemplazado: «<syntaxhighlight lang="bash">» por «<syntaxhighlight lang="bash" copy>»
 
Línea 1: Línea 1:
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash" copy>
error: failed to commit transaction (conflicting files)
error: failed to commit transaction (conflicting files)
python-commonmark: /usr/lib/python3.10/site-packages/commonmark-0.9.1.dist-info/LICENSE exists in filesystem
python-commonmark: /usr/lib/python3.10/site-packages/commonmark-0.9.1.dist-info/LICENSE exists in filesystem
Línea 6: Línea 6:
or
or


<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash" copy>
error: failed to commit transaction (conflicting files)
error: failed to commit transaction (conflicting files)
node-gyp: /usr/lib/node_modules/node-gyp/node_modules/tar/node_modules/minipass/index.mjs exists in filesystem
node-gyp: /usr/lib/node_modules/node-gyp/node_modules/tar/node_modules/minipass/index.mjs exists in filesystem
Línea 13: Línea 13:
Solución 1:
Solución 1:


<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash" copy>
sudo pacman -S npm --overwrite '/usr/lib/node_modules/npm/*'
sudo pacman -S npm --overwrite '/usr/lib/node_modules/npm/*'
</syntaxhighlight>
</syntaxhighlight>
Línea 19: Línea 19:
Solución 2:
Solución 2:


<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash" copy>
sudo rm /usr/lib/python3.10/site-packages/commonmark-0.9.1.dist-info/LICENSE
sudo rm /usr/lib/python3.10/site-packages/commonmark-0.9.1.dist-info/LICENSE
</syntaxhighlight>
</syntaxhighlight>
Línea 25: Línea 25:
or
or


<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash" copy>
sudo rm /usr/lib/node_modules/node-gyp/node_modules/tar/node_modules/minipass/index.mjs
sudo rm /usr/lib/node_modules/node-gyp/node_modules/tar/node_modules/minipass/index.mjs
</syntaxhighlight>
</syntaxhighlight>

Revisión actual - 14:02 26 ene 2026

error: failed to commit transaction (conflicting files)
python-commonmark: /usr/lib/python3.10/site-packages/commonmark-0.9.1.dist-info/LICENSE exists in filesystem

or

error: failed to commit transaction (conflicting files)
node-gyp: /usr/lib/node_modules/node-gyp/node_modules/tar/node_modules/minipass/index.mjs exists in filesystem

Solución 1:

sudo pacman -S npm --overwrite '/usr/lib/node_modules/npm/*'

Solución 2:

sudo rm /usr/lib/python3.10/site-packages/commonmark-0.9.1.dist-info/LICENSE

or

sudo rm /usr/lib/node_modules/node-gyp/node_modules/tar/node_modules/minipass/index.mjs