일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- springboot
- ReactJS
- devops
- IntelliJ
- db
- php
- Spring
- Spring Batch
- linux
- Gradle
- 맛집
- javascript
- Design Patterns
- Spring Boot
- it
- AWS
- laravel
- redis
- Web Server
- tool
- JVM
- elasticsearch
- jenkins
- java
- MySQL
- Oracle
- Git
- jsp
- ubuntu
- 요리
Archives
- Today
- Total
아무거나
[NPM] error can't find python executable python you can set the python env variable mac 오류해결 본문
Javascript & HTML & CSS/Javascript
[NPM] error can't find python executable python you can set the python env variable mac 오류해결
전봉근 2022. 4. 18. 18:12반응형
NPM install 시에 "error can't find python executable python you can set the python env variable mac" 오류 해결 (node-pre-gyp 설치시 기준)
python 경로를 못찾거나 버전이슈일 가능성이 높다. 현재 진행한 환경은 Mac의 Python3 이며 Python2를 설치하여 환경변수를 변경하여 해결하였다.
// homebrew를 통한 python 2.7.18 설치
$ brew install pyenv
$ pyenv install 2.7.18
// 환경변수 등록 (위의 파이썬 설치후에 표시되는 경로를 하기 npm_config_python= 에 넣고 명령실행)
$ export npm_config_python=Users/bkjeon/.pyenv/versions/2.7.18/bin/python2
반응형
'Javascript & HTML & CSS > Javascript' 카테고리의 다른 글
[prisma] npx prisma generate 명령실행 후 애플리케이션 구동시에 DB/컬럼 관련 오류가 발생하는 경우 (0) | 2022.11.19 |
---|---|
Javascript var, let, const 차이 (0) | 2022.08.10 |
[yarn] yarn 관련 명령 (0) | 2020.06.06 |
연속된 4자리 숫자 중복 체크 (0) | 2020.04.06 |
객체에 key/value 추가 (0) | 2020.03.21 |
Comments