시행착오의 흔적들/Setting 6

Google Drive에서 Git Clone하기

네, Google Colab에서 Google Drive에 Git 저장소를 클론할 수 있습니다. 이를 위해 Google Drive를 Colab 환경에 마운트(mount)하고, 그 후에 Git을 사용하여 원하는 저장소를 클론할 수 있습니다. 아래 단계에 따라 진행해 보세요.단계별 가이드Google Colab 열기: Google Colaboratory의 웹 애플리케이션을 엽니다.Google Drive 마운트: Google Drive를 Colab에 마운트합니다. 아래 코드를 실행하면 인증 절차가 진행됩니다. pythonCopyfrom google.colab import drivedrive.mount('/content/drive')Git 클론 명령어 입력: 이제 원하는 Git 저장소를 클론할 준비가 되었습니다. ..

gitignore 등록 후 changes에 안 올라오게 하는 법

To automatically remove files from the Git index that are listed in your .gitignore, you can use a combination of shell commands. Here's a step-by-step guide to achieve this:Step-by-Step Guide Ensure Your .gitignore is Updated:Make sure your .gitignore file includes all the files and directories you want to ignore. For example:          # Ignore virtual environment     .venv/      # Ignore Pytho..

.gitignore 샘플

가상환경할 때 깔리는 python package list나, 캐시 등등 정말 쓰잘데기 없는거 깃헙에 올리지 않기 위해 미니 플젝하다 팀원이 어디 인터넷에서 주워온 걸 내가 줍줍해서 올린다.잘 쓰실 분들은 야무지게 잘 쓰시길__pycache__/*.py[cod]*$py.class# C extensions*.so# Distribution / packaging.Pythonbuild/develop-eggs/dist/downloads/eggs/.eggs/lib/lib64/parts/sdist/var/wheels/share/python-wheels/*.egg-info/.installed.cfg*.eggMANIFEST# PyInstaller# Usually these files are written by a pyt..

Ubuntu 20.04에서 소리가 작게 나오는 현상.

alsamixer도 설치해보았지만 별 소용이 없었다. https://kavoom2.github.io/%EA%B8%B0%ED%83%80/ubuntu_sound_mixing_problem/ Ubuntu 20.04에서 소리가 정상적으로 출력되지 않는 경우 우분투에서 가짜출력이 나오거나, 스피커 상호작용은 정상적으로 표시되지만 소리가 출력되지 않을 시 해결방법 kavoom2.github.io https://ksjm0720.tistory.com/12 Linux 볼륨을 조정해보자. Alsamixer I. Linux 실행에서의 어려움 지난 번 Ubuntu 설치에서 말했던 것처럼 Linux 설치의 경우 Window 설치보다 안정성이 떨어질 가능성이 높습니다. (특히 Debian 직접 설치의 경우) 많은 하드웨어를 직접..

우분투에서 가상환경/아나콘다 구성하기/텐서플로깔기

tensorflow를 pip 대신 conda로 깔면 밑에 cuda, cdnn을 까는 삽질을 안해도 된다고 한다 ㅠㅠ 하...내 시간 ㅜㅜ 알아서 다 해준다는데...왜.... 밑에 것 보세요.... conda install tensorflow하면 된다함. 끝 https://medium.com/analytics-vidhya/why-conda-install-instead-of-pip-install-ba4c6826a0ae Why conda install instead of pip install? We all are familiar with pip Because we all have used it to install most of our libraries and dependencies required to tes..

우분투- 한영키 전환 설치

1. Setting > Region & Language > Manage Installed Languages >Update(필요시) 2. Add Korean(Hangul) 3. Ubuntu Software >install [Gnome Tweaks] 4. Tweaks > keyboard &mouse > Overview Shortcut- Additional Layout Options > Korean Hangul/Hanja keys > [Right Alt as Hangul, right Ctrl as Hanja]에 체크 5. 재부팅 6. 우측상단 언어 설정 아이콘> IBusHangul Setup > Hangul Toggle Key > add > type [Right Alt] > Apply & OK https://..