Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
development:python:start [2020/03/19 13:04] kalenpw created |
development:python:start [2021/06/29 15:16] (current) kalenpw |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== Python ====== | ====== Python ====== | ||
* [[. django | Django]] | * [[. django | Django]] | ||
+ | * [[. tkinter | Tkinter]] | ||
---- | ---- | ||
Line 10: | Line 11: | ||
# create virtualenv | # create virtualenv | ||
virtualenv venv -p python3 | virtualenv venv -p python3 | ||
+ | # macOS: virtualenv venv -p / | ||
- | # active | + | # activate |
source venv/ | source venv/ | ||
Line 23: | Line 25: | ||
deactivate | deactivate | ||
</ | </ | ||
+ | |||
+ | ---- |