[Electron] APPIMAGE env is not defined, current application is not an AppImage
·
개발 ━━━━━/Troubleshoot
문제 Linux 환경에서 앱을 빌드하고 electron-updater (autoUpdater) 의 checkForUpdatesAndNotify() 함수가 작동되면위처럼 APPIMAGE 가 정의되지 않았다 뜨고 업데이트 확인 기능이 실행되지 않는다. Windows 환경에서는 문제가 없고Linux 에서는 APPIMAGE 환경변수가 따로 필요한 것 같다. 해결app.js 에const os = require('os');const path = require('path');const platform = os.platform();if(platform == 'linux'){ process.env.APPIMAGE = path.join(__dirname, 'dist', `*-${app.getVersion()}.AppIm..
[Raspberry Pi] Docker-Compose 설치시 Building wheel for crytography (PEP 517) ... error
·
개발 ━━━━━/Troubleshoot
Raspberry pi 3b+ 에 Ubuntu 를 올려서 그 위에 Docker-Compose 를 설치하는 과정에서 마주한 오류... 처음엔 EC2 에 설치하듯이 설치해봤지만 sudo curl -L https://github.com/docker/compose/releases/latest/download/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose 뭐가 안 맞아서 안되는듯 했다. 구글링 중 pip 로 설치하면 된다는 글을 발견하고 https://gist.github.com/vicky-gonsalves/042ae44268975eafee5c1a9af224c33c Install docker and docker-compose in ..