Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- deeplearning
- konlpy
- 비지도학습
- 사이킷런
- NLP
- HTML
- pandas
- fastapi #파이썬웹개발
- 랭체인
- 머신러닝
- 자연어분석
- 챗gpt
- programmablesearchengine
- pytorch
- 파이썬웹개발
- 딥러닝
- sklearn
- fastapi #python웹개발
- 판다스
- OpenAIAPI
- langchain
- 파이토치
- 파이썬
- 파이토치기본
- MachineLearning
- 판다스 데이터정렬
- fastapi
- chatGPT
- Python
- python 정렬
Archives
- Today
- Total
Data Navigator
git bash에 anaconda 경로 설정하기 본문
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
'Python' 카테고리의 다른 글
Docker로 django, gunicorn, postgreSQL, Nginx 연동하기 (0) | 2024.10.25 |
---|---|
tensorflow docker를 이용해 gpu 이용하기 + windows의 폴더 공유하기 (0) | 2024.04.16 |
DirectML : AMD, radeon, intel 내장그래픽을 사용한 딥러닝 GPU 가속 (4) | 2024.02.16 |
[Django] docker-compose 로 django와 mysql 연결하기 (0) | 2023.09.14 |
Invalid version: '0.996/ko-0.9.2' - Mecab 설치 오류 해결 - Ubuntu22.04, Konlpy, mecab (1) | 2023.06.27 |