Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
| public:computer:wsl [2022/12/29 10:44] – [References] alex | public:computer:wsl [2022/12/29 16:17] (current) – [References] alex | ||
|---|---|---|---|
| Line 32: | Line 32: | ||
| $ sudo dpkg-reconfigure loales | $ sudo dpkg-reconfigure loales | ||
| </ | </ | ||
| + | - 한글 입력기 <sxh bash> | ||
| + | sudo apt install fcitx fcitx-hangul fonts-noto-cjk dbus-x11 | ||
| + | im-config #choose fcitx | ||
| </ | </ | ||
| Line 83: | Line 85: | ||
| </ | </ | ||
| '' | '' | ||
| + | |||
| + | ==== VS Code ==== | ||
| + | - download .deb file at visual studio code official site | ||
| + | - <sxh bash> | ||
| + | sudo apt install ./filename | ||
| + | </ | ||
| + | '' | ||
| ===== Uninstall WSL ===== | ===== Uninstall WSL ===== | ||
| Line 89: | Line 98: | ||
| Administrator> | Administrator> | ||
| </ | </ | ||
| + | |||
| + | ===== python settings ===== | ||
| + | * pip 설치< | ||
| + | $ sudo apt update & sudo apt upgrade -y | ||
| + | $ sudo apt install python3-pip | ||
| + | $ sudo apt install python3-venv | ||
| + | </ | ||
| + | |||
| + | * 가상환경 생성< | ||
| + | $ python3 -m venv .venv | ||
| + | </ | ||
| + | |||
| + | * 가상환경 활성화< | ||
| + | $ source .venv/ | ||
| + | 또는 | ||
| + | $ . .venv/ | ||
| + | </ | ||
| + | |||
| + | * 가상환경 비활성화< | ||
| + | $ deactivate | ||
| + | </ | ||
| + | |||
| ===== References ===== | ===== References ===== | ||
| Line 94: | Line 125: | ||
| * [[https:// | * [[https:// | ||
| * [[https:// | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||