Window10 개발환경 셋팅

BM Kim·2022년 2월 15일
0
post-thumbnail

1. 설치목록

terminal : Window New Terminal / theme : Subliminal
WSL2 OS : Ubuntu 20.04
font : For windows font download page

2. 기타

심볼릭 링크 있는지 확인하기

sudo update-alternatives --config python
update-alternatives: error: no alternatives for python

확인해보고 없으면 아래의 명령어로 심볼릭 링크 걸어주고

sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.8 1
sudo update-alternatives --install /usr/bin/pip pip /usr/bin/pip3 1

나중에 심볼릭 링크를 다른 버전으로 바꾸고 싶다면 아래의 명령어를 사용하자.

sudo update-alternatives --config python
There are 2 choices for the alternative python (providing /usr/bin/python).

  Selection    Path                Priority   Status
------------------------------------------------------------
* 0            /usr/bin/python3.8   2         auto mode
  1            /usr/bin/python2.7   1         manual mode
  2            /usr/bin/python3.8   2         manual mode

Press <enter> to keep the current choice[*], or type selection number: 2

2.2. python venv

나는 콘다를 주로 썼는데 조금 무거운 느낌이 없지 않나 싶어서 venv..?를 쓸까?
활용법만 조금 알아봄.
파이썬도장 python venv 사용법
deactivate 하고 싶을때는 prompt에 deactivate 라고 치면 된다.

2.3. autojump 설치

왠지 설치해도 그닥 안쓸거 같은 느낌 팍팍..

git clone git://github.com/wting/autojump.git
cd autojump
./install.py

나중에 추가할 것 - 처음 윈도우 세팅 했을때부터 어떻게 시작할지를 정리할 것.

참고

0개의 댓글