After install M. office 2019, open terminal:
#### Word
- sudo xattr -cr /Applications/Microsoft\ Word.app
- sudo xattr -lr /Applications/Microsoft\ Word.app
- sudo codesign -f -s - /Applications/Microsoft\ Word.app
After install M. office 2019, open terminal:
#### Word
| 1) Ejecutamos el "Terminal" | |
| 2) En el terminal, escribimos la siguiente linea de comando y luego pulse enter. | |
| sudo spctl --master-disable | |
| 3) Introducimos la contraseña de administrador y pulsamos enter | |
| 4) Para que los cámbios surtan efecto copie y pegue en el terminal Killall Finder. | 
| Open Terminal and type | |
| $vi ~/.bash_profile | |
| Add the following lines at the end: | |
| --- | |
| function npmv { | |
| case $# in # number of arguments passed | |
| 0) v="$(npm -v)" ; #store output from npm -v in variable | |
| echo "NPM version is: $v"; #can't use single quotes | |
| #${v} would also work | 
| curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash - | |
| sudo apt-get install -y nodejs | |
| For other version -> change value 12 | 
| Open Terminal and type | |
| #vi ~/.bash_profile | |
| Paste in the following lines: | |
| --- | |
| export PS1="\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\w\[\033[m\]\$ " | |
| export CLICOLOR=1 | |
| export LSCOLORS=ExFxBxDxCxegedabagacad | |
| alias ls='ls -GFh' | |
| --- |