Gictorbit / photoshopCClinux

Photoshop CC v19 installer for Gnu/Linux
GNU General Public License v2.0
4.17k stars 306 forks source link

Photoshop fails to install #200

Open ghost opened 1 year ago

ghost commented 1 year ago

Hey guys, essentially, photoshop fails within the installer:

image

As you can see it warns "Please don't change the default destination folder", I'm just running the commands provided without cd'ing into anything apart from what the commands specify

Does anyone know why? Many thanks if so

EnriLion commented 1 year ago

@BearPain The google drive's linke you provided doesn't work image

BearPain commented 1 year ago

Hola chicos, esencialmente, Photoshop falla dentro del instalador:

imagen

Como puede ver, advierte "Por favor, no cambie la carpeta de destino predeterminada", solo estoy ejecutando los comandos provistos sin usar CD en nada aparte de lo que especifican los comandos

¿Alguien sabe por qué? muchas gracias si es asi

puedes revisar el aporte desde acá. https://github.com/Gictorbit/photoshopCClinux/issues/199#issuecomment-1636774575

gruvian commented 8 months ago

Make sure mono and gecko are installed first (they might not be automatically installed). If you're using a x64 architecture enable the x32 architecture sudo dpkg --add-architecture i386 and if wine32 is missing, run sudo apt-get install wine32:i386 and try deleting the .wine directory from home and running wineboot --init.

Edit: I also had issues with wine64 not being recognized as installed so I changed the function install_photoshopSE() from /photoshopCClinux/scripts/PhotoshopSetup.sh from this command wine64 "$RESOURCES_PATH/photoshopCC/photoshop_cc.exe" &>> "$SCR_PATH/wine-error.log" || error "sorry something went wrong during photoshop installation" to this wine "$RESOURCES_PATH/photoshopCC/photoshop_cc.exe" &>> "$SCR_PATH/wine-error.log" || error "sorry something went wrong during photoshop installation" and it worked for me. Edit 2: Also had to change a wine64 command to wine in launcher.sh from .photoshopCCV19.

Manelloth commented 3 days ago

Make sure mono and gecko are installed first (they might not be automatically installed). If you're using a x64 architecture enable the x32 architecture sudo dpkg --add-architecture i386 and if wine32 is missing, run sudo apt-get install wine32:i386 and try deleting the .wine directory from home and running wineboot --init.

Edit: I also had issues with wine64 not being recognized as installed so I changed the function install_photoshopSE() from /photoshopCClinux/scripts/PhotoshopSetup.sh from this command wine64 "$RESOURCES_PATH/photoshopCC/photoshop_cc.exe" &>> "$SCR_PATH/wine-error.log" || error "sorry something went wrong during photoshop installation" to this wine "$RESOURCES_PATH/photoshopCC/photoshop_cc.exe" &>> "$SCR_PATH/wine-error.log" || error "sorry something went wrong during photoshop installation" and it worked for me. Edit 2: Also had to change a wine64 command to wine in launcher.sh from .photoshopCCV19.

Thanks for this! Managed to install it after adjusting those lines, working perfectly now