Differences

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

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
development:python [2020/02/27 15:19]
kalenpw
— (current)
Line 1: Line 1:
-====== Python ====== 
-  * [[.python : django | Django]] 
  
----- 
-===== Virtual Environment ===== 
-<code bash> 
-# must have virtualenv installed, if not: 
-sudo pip3 install virtualenv 
- 
-# create virtualenv 
-virtualenv venv -p python3 
- 
-# active venv 
-source venv/bin/active # or activate.fish 
- 
-# install dependancies 
-pip install -r requirements.txt 
- 
-# to exit 
-deactivate 
-</code>