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 15:44] – [References] alex | public:computer:wsl [2022/12/29 16:17] (current) – [References] alex | ||
|---|---|---|---|
| Line 98: | 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 106: | Line 128: | ||
| * [[https:// | * [[https:// | ||
| * [[https:// | * [[https:// | ||
| + | * [[https:// | ||