From cba89f70e3a1bde97ac60b1838871d4f95f92e16 Mon Sep 17 00:00:00 2001 From: Joe Testa Date: Tue, 26 Nov 2019 12:12:47 -0500 Subject: [PATCH] Updated pypi notes. --- pypi/notes.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pypi/notes.txt b/pypi/notes.txt index 78dee2f..51a30e7 100644 --- a/pypi/notes.txt +++ b/pypi/notes.txt @@ -1,8 +1,8 @@ To create package and upload to test server: # apt install virtualenv -$ virtualenv -p /usr/bin/python3 pypi_upload -$ cd pypi_upload; source bin/activate +$ virtualenv -p /usr/bin/python3 /tmp/pypi_upload +$ cd /tmp/pypi_upload; source bin/activate $ pip3 install twine $ cp -R path/to/ssh-audit . $ cd ssh-audit/pypi @@ -12,6 +12,6 @@ $ make uploadtest To download from test server and verify: -$ virtualenv -p /usr/bin/python3 pypi_test -$ cd pypi_test; source bin/activate +$ virtualenv -p /usr/bin/python3 /tmp/pypi_test +$ cd /tmp/pypi_test; source bin/activate $ pip3 install --index-url https://test.pypi.org/simple ssh-audit