728x90 밍글링글링399 [centos] Python(파이썬) 버전 변경 CentOS SCL 릴리스 파일을 설치 sudo yum install centos-release-scl Python3 설치 sudo yum install rh-python36 현재 셀의 기본 python 버전이 2.7.5인 경우 파이썬3으로 사용하기 위해 Python 3.6에 액세스하려면 scl 도구를 사용하여 새 셸 인스턴스를 시작해야 한다. scl enable rh-python36 bash Python 3.6에 액세스하려면 scl 도구를 사용하여 새 셸 인스턴스를 시작해야 한다. 이후 파이썬 버전 확인을 하면 python 3.6.3으로 보여진다.파이썬 버전 확인은 python --version 빅데이터 프로그래밍/Python 2022. 3. 28. [centos7] npm install 시 (npm ERR! gyp ERR! find Python 오류 해결) npm ERR! gyp info it worked if it ends with ok npm ERR! gyp info using node-gyp@8.4.1 npm ERR! gyp info using node@16.14.2 | linux | x64 npm ERR! gyp ERR! find Python npm ERR! gyp ERR! find Python Python is not set from command line or npm configuration npm ERR! gyp ERR! find Python Python is not set from environment variable PYTHON npm ERR! gyp ERR! find Python checking if "python3" can be used.. Express, Vue 2022. 3. 28. [docker] vi : command not found 오류 해결 도커 뿐만 아니라 OS 내부에 VIM이 설치되어 있지 않아서 나타나는 현상이다. VIM를 설치한다. 업데이트 한다. $ apt-get update 업데이트 이 후 vim을 설치한다. $ apt-get install vim 이 후 vi 편집기를 사용할 수 있다. docker 2022. 3. 27. [docker] Nginx 사용 # nginx 이미지 검색 $ docker search nginx # docker nginx 이미지 가지고 오기 $ docker pull nginx //docker pull nginx:lasest //위 명령어로 실행해도 무방하다. //docker pull nginx:1.21.1 //위 명령어로 실행해도 무방하다. # 도커 이미지 확인 $ docker images docker 2022. 3. 27. [docker] docker mariadb 설치 Docker hub에서 Mariadb 이미지를 다운로드 받자 공식 홈페이지에서 도커를 다운로드하여서 설치하셨다면, 이제는 본격적으로 Mariadb를 설치하기 위해 Mariadb 이미지를 다운받아 보겠습니다. 사용자 환경에 따라 화면이 조금은 다를 수 있지만 도커는 CLI를 기반으로 동작하기 때문에 명령어를 입력할 수 있는 창을 이용해 진행과정을 살펴보도록 하겠습니다. sudo yum -y update sudo yum install yum-utils device-mapper-persistent-data lvm2 sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo sudo yum install do.. docker 2022. 3. 26. [express] 로컬에서 express 생성 시 액세스 거부 오류 ============================================================================ Set-ExecutionPolicy : 레지스트리 키 'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PowerShell\1\ShellIds\Microsoft.PowerShell'에 대한 액세스가 거부되었습니다. 기본(LocalMachine) Scope에 대한 실행 정책을 변경하려면 "관리자 권한으로 실행" 옵션으로 Windows PowerShell을 시작하십시오. 현재 사용자에 대한 실행 정책 을 변경하려면 "Set-ExecutionPolicy -Scope CurrentUser"를 실행하십시오. 위치 줄:1 문자:1 + Set-ExecutionP.. Express, Vue 2022. 3. 22. [vue] express, vue3 설치 1. NODE 기반으로 되어 있는 프로젝트이기에 NODE를 설치한다.(v16, v17) $ npm install -g @vue/cli 2. 위 명령어로 vue를 내려받는다. $ vue -v 위 명령어로 vue 버전을 확인할 수 있다. 3. $ npm install express-generator -g 위 명령어로 express를 내려받는다. Express, Vue 2022. 3. 22. [vue] vue cli 프로젝트 설정 아래 코드는 터미널에서 프로젝트 init시 보여지는 절차를 그대로 표시한 내용이다. VUE 프로젝트 생성시 참고한다. > manually select features [*]Choose Vue version [*]Babel // js 최신 문법을 폴리필 해줘 구형 브라우저 동작하게 해주는 컴파일러 []TypeScript // 정적타입 언어 []Progressive Web App (PWA) Support [*]Router [*]Vuex // 상태 관리 라이브러리 [*]CSS Pre-processors // scss, less등 전처리 필요한 css 사용시 선택 [*]Linter / Formatter // ESLint, prettier등 사용시 선택 [*]Unit Testing // 단위테스도구 사용시 선택 .. Express, Vue 2022. 3. 17. [vue] Vue eslint 규칙 설정 Vue3 프로젝트를 생성하고 실행시키는 중 아래와 같은 에러를 발견하였다. You may use special comments to disable some warnings. Use // eslint-disable-next-line to ignore the next line. Use /* eslint-disable */ to ignore all warnings in a file. ERROR Error: Build failed with errors. 작업을 하다보면 Vue 규칙을 지키기 어렵다. npm install --save-dev eslint eslint-plugin-vue@next 위 명령어를 입력하여 eslint-plugin을 받은 뒤 프로젝트 내에 .eslintignore 파일과 .eslintrc.. Express, Vue 2022. 3. 17. [Flutter] Flutter 개발 환경 세팅 1. VSCODE 설치 (비주얼 스튜디오 설치) https://code.visualstudio.com/ Visual Studio Code - Code Editing. Redefined Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. code.visualstudio.com 2. 설치된 VSCODE에 MaketPlace를 이용하여 추가로 필요한 확장 플러그인을 설치한다. .. Flutter 2022. 3. 15. [Java/자바] java.lang.Integer cannot be cast to java.lang.String 해결 방법 java.lang.Integer cannot be cast to java.lang.String 위의 오류 발생 원인은 mybatis에서 resultType이 HashMap 일 때, String value = (String) map.get("value"); 위와 같이 Number(Int) 타입을 곧바로 String 캐스팅하려고 할때 발생한다. 해결 방법은 아래와 같이 캐스팅 변환이 아닌 String 클래스의 valueOf(Object) 를 사용하여 처리한다. String value = String.valueOf( map.get("value")); JAVA/Exception 2018. 10. 22. Eclipse(이클립스) FTP, SHELL 적용 우선, 사용하기에 앞서, 아래와 같이, 이클립스에서 Help - Install New Software 를 클릭한다. Install 창에서 Wrok with 입력칸에 http://download.eclipse.org/releases/europa 을 기입하게 되면, 아래 이미지와 같이 LIST들이 자동 조회됩니다. 자동 조회 LIST 들 중, C and C++ Developerment Remote Access and Device Development 두가지를 체크한 뒤, 넘어간다. Installed 된 LIST들이 조회되고, 아래와 같이 DETAIL 하게 보여준다. Review Licenses 를 보여주는 창인데, RADIO BOX에서 I access the terms of the license agreem.. Development Tools/Eclipse 2018. 10. 18. 이전 1 2 3 4 5 6 7 8 ··· 34 다음 728x90