gitlab 12.x.x 버전 설치 시 database migration 오류

gitlab을 버전 업그레이드 하는데 database migration에서 문제가 생겼다. 설치가 잘 진행되나 싶었는데 migration 오류를 뿜어내며 설치가 중단 됐다. 구글링으로 여러 방법을 써봤는데 제대로 설치되는 경우가 없었다. 결국 migration은 포기하고 깔끔하게…

0 Comments

Failed building wheel for PyGObject

MacOS에서 PyGObject 패키지를 pip으로 설치하는 과정에서 다음과 같은 오류가 발생했다. ERROR: Command errored out with exit status 1: command: /Users/victor/venv/dev_py36/bin/python /Users/victor/venv/dev_py36/lib/python3.6/site-packages/pip/_vendor/pep517/_in_process.py build_wheel /var/folders/cb/hj031cjn06v25qv773t8s7qm0000gn/T/tmps1lk36vj cwd: /private/var/folders/cb/hj031cjn06v25qv773t8s7qm0000gn/T/pip-install-gm85uy4t/PyGObject Complete output (43 lines): running…

1 Comment

react-native-maps 사용 시 supportLibVersion 에러 해결

react-native-maps를 사용하려는데 패키지 인스톨만 했는데도 다음과 같은 에러가 발생했다. FAILURE: Build failed with an exception. * Where: Build file '/Users/victor/010_dev/gMap/node_modules/react-native-maps/lib/android/build.gradle' line: 20 * What went wrong: A problem occurred evaluating…

0 Comments

라즈베리파이 bcm2835 sound card가 사라졌을 때

라즈베리파이를 구동하는데 이상하게 재부팅하는 경우 bcm2835 ALSA device가 사라졌다. 해결방법을 찾지 못하던 중에 아래와 같은 솔루션을 찾았다. $sudo vi /boot/config.txt 위 파일에 아래 라인을 추가 후 재부팅 하면 오디오 드라이버가…

0 Comments

라즈베리파이 제로 gRPC Illegal instruction Error

라즈베리파이 제로에서 import grpc를 하려는데 아래와 같은 오류가 발생했다. 특별한 추가 메시지 없이 아래와 같은 문제가 발생하여 당황했는데. 설치 했던 버전이 1.23.1이다. grpc 버전을 1.18.0으로 변경하니 아래와 같은 문제가 사라졌다.…

0 Comments

android-sdk does not exist

react-native 프로젝트 실행을 할 때 다음과 같이 에러가 나오는 경우 * What went wrong: A problem occurred configuring project ':app'. > The SDK directory '/usr/local/opt/android-sdk' does not exist. * Try:…

0 Comments