Differences

This shows you the differences between two versions of the page.

Link to this comparison view

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 /usr/local/Cellar/python@3.7/3.7.9_2/bin/python3.7
  
-active venv+activate venv
 source venv/bin/active # or activate.fish source venv/bin/active # or activate.fish
  
Line 23: Line 25:
 deactivate deactivate
 </code> </code>
 +
 +----