Skip to content
This repository was archived by the owner on May 14, 2021. It is now read-only.

Getting started on Ubuntu

derpadoo edited this page Aug 9, 2017 · 2 revisions

Install dependencies.

apt-get update
apt-get install python-dev python-pip python3-pip python-virtualenv libxml2-dev libxslt1-dev -y

Create folder to store project (optional).

mkdir nexpose
cd nexpose

Create virtual environment for Python 2.7 (optional).

virtualenv -p /usr/bin/python2.7 .venv
source .venv/bin/activate

Option 1: Install from PyPi.

pip install nexpose

Option 2: pip install from github.

pip install git+https://github.com/rapid7/nexpose-client-python.git

Deactivate virtual environment when done.

deactivate

Clone this wiki locally