If you are seeing this message then your browser does not support CSS. This site is designed entirely with CSS. We recommend that you upgrade your browser.

Skip Navigation
How to add local Python add-ins

Most all Python add-ins can be added to any computer regardless of admin access by using pip with a simple switch.  THe "--user" switch will direct pip to install the add-in in the user context and bypas the need to any administrative rights on the computer.

Here is the format and an examples:

Format:

pip install --user PACKAGE

Example to install "orange3"

pip install --user orange3