Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.06 KB

INSTALL.md

File metadata and controls

37 lines (28 loc) · 1.06 KB

Privledge Installation

Table of Contents


Environment Recommendations

Privledge uses Python 3.5 so be sure to use the appropriate command for Python 3.5 pip

I recommend using a virtual environment with virtualenvwrapper and mkproject (documentation/installation):

$ mkproject -p python3.5 privledge

To enter and leave your virtual environment, use the commands workon and deactivate respectively:

$ workon privledge
(privledge) $ deactivate
$

Install from Github

(privledge) $ git clone git@github.com:elBradford/privledge.git .
(privledge) $ pip install -e .
(privledge) $ pls
Welcome to Privledge Shell...
> help

-e is an optional pip argument that allows you to modify the code and have the changes immediately applied to the installed script - no need to reinstall to see changes you made. <<<<<<< HEAD