일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- github.io
- 깃허브 토큰
- nightly
- github token
- git command
- github command
- jekyll
- sudo pmset -c disablesleep
- 잠자기해제
- 나만의블로그
- 깃헙 토큰
- jekyll theme
- terminal command
- CUDA
- github secret key
- GPU
- terminal 명령어
- 깃허브 블로그
- hydejack
- python basic
- github
- 모니터연결
- pandas
- git 명령어
- 깃헙
- 구글애널리틱스
- github 블로그
- github blog
- 깃허브
- 깃헙 블로그
- Today
- Total
목록
반응형
All
반응형
(27)
Tech-Logs of Data-Scientist
정리코드 # (1) jupyter kernelspec 확인 jupyter kernelspec list # (2) 위의 kernelspec 제거 rm -rf /Users//Library/Jupyter/ # (3) jupyter 삭제 brew uninstall jupyter brew cleanup # (4) jupyter 재설치 pip install jupyterlab # brew install jupyter 참조 : https://stackoverflow.com/questions/49946157/jupyter-notebook-bad-interpreter-error-message
brew 설치 : google에 brew 설치 후, brew 공식홈페이지 들어가서 설치 pyenv 설치 : brew install pyenv 환경변수 세팅 설정해야하는 파일 vi ~/.bash_profile vi ~/.zshrc 위의 파일에 아래의 코드 추가 export PATH="$HOME/.pyenv/bin:$PATH" eval "$(pyenv init -)" 참조 : https://mizykk.tistory.com/17
참조 : https://velog.io/@choonsik_mom/pytorch%EB%A1%9C-LSTM-%EA%B5%AC%ED%98%84%ED%95%98%EA%B8%B0
Github을 이용할 때, 폴더구조 및 폴더명에 대해서 고민이 많은 분들을 위해서 참조할만한 내용입니다. 참조 링크 https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=classe82&logNo=221433076606 https://medium.com/code-factory-berlin/github-repository-structure-best-practices-248e6effc405
python version tensorflow는 python 3.9 이상에서 설치 불가능하므로, python 3.8 이하로 설정 필요 다운그레이드는 stackoverflow, tistory 모두 참조해서 변경 이후, terminal과 jupyter notebook의 python version이 다르면, tistory 참조 terminal의 python version : jupyter notebook의 sys.version 또는 terminal의 python --version jupyter의 python version : jupyter notebook의 platform.python_version() tistory를 통해서 tensorflow 설치 2번이 안 될 경우 velog를 통해서 설치 여기서도 에러가..
맥북의 Local Jupyter에서 GPU 사용법을 정리하였음. 나의 맥북은 버전이 맞지 않아 재설치가 귀찮아서.. 회사에서 사용하는 AWS Sagemaker로 작업하기로 하였음. 추후 맥북의 GPU 세팅을 하게되면 업데이트 예정. (1) 기본 Guide 링크참조 : https://codingapple.com/unit/tensorflow-2-setting-up-mac-window/ (2) Miniforge 설치 링크참조 : https://webnautes.tistory.com/1638 (3) CUDA Toolkit 설치 링크참조 : https://developer.nvidia.com/cuda-toolkit-archive cuda 10.2 에서 mac os로 설치 (4) Brew 설치 후, Python 3..
본 포스팅에서는 git 작업 시, 사용되는 command를 정리해두었습니다. git 작업 시 참조하여 활용하시기바랍니다. 1. Terminal Commands 먼저, Terminal에서 사용되는 Command를 명령어 정리표를 통해 해당 명령어가 어떤 내용을 내포하고 있는지 확인해봅시다. 순서 명령어 설명 예시 1 ls (List의 약어) - 현재 경로의 파일들을 보여줌 - "-al"을 추가하여 모든파일(숨김파일포함)의 자세한 정보를 표시가능 ls ls -al 2 cd (Change Directory의 약어) - 폴더 이동 cd {디렉토리명} cd {상위디렉토리}/{하위디렉토리} 3 pwd (Print Working Directory의 약어) - 현재 위치의 절대 경로를 보여줌 pwd 4 rm (Remo..