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:46] – 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 96: | 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 101: | Line 125: | ||
| * [[https:// | * [[https:// | ||
| * [[https:// | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||