Data Navigator

git bash에 anaconda 경로 설정하기 본문

Python

git bash에 anaconda 경로 설정하기

코딩하고분석하는돌스 2024. 2. 20. 12:13

git bash에 anaconda 경로 설정하기

1. ~/.bashrc 에 경로 등록

echo ". /c/Users/<username>/miniforge3/etc/profile.d/conda.sh" >> ~/.bashrc

 

 

2. source ~/.bashrc  로 반영하기

2. source ~/.bashrc

 

 

3. 윈도우 터미널에 git bash 추가하기 

   1. cmd 를 관리자모드로 실행

   2. ctrl + , 로 설정을 열고 왼쪽 하단에 Json 파일 열기 실행

 

   3. profiles 부분에 아래 내용 추가

{
    "commandline": "\"%PROGRAMFILES%\\git\\usr\\bin\\bash.exe\" -i -l",
    "cursorShape": "filledBox",
    "guid": "{124fc1da-dadc-4276-9c4e-f0524ba57a49}",
    "hidden": false,
    "icon": "%PROGRAMFILES%\\git\\mingw64\\share\\git\\git-for-windows.ico",
    "name": "Git Bash",
    "startingDirectory": "%USERPROFILE%"
  }

추가 후 저장

 

   4. ~/.bash_profile, ~/.bash_login 설정하기 

echo "if [ -f ~/.bashrc ]; then . ~/.bashrc; fi" >> ~/.bash_profile
source ~/.bash_profile