-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
5 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ Installing from PyPi | |
******************** | ||
|
||
.. code-block:: bash | ||
$ virtualenv env -p python3 | ||
$ python3 -m virtualenv env | ||
$ source/env/bin/activate | ||
$ pip install aws_ir | ||
$ aws_ir -h | ||
|
@@ -23,7 +23,7 @@ Installing From Github | |
|
||
.. code-block:: bash | ||
$ virtualenv env -p python3 | ||
$ python3 -m virtualenv env | ||
$ source/env/bin/activate | ||
$ pip install git+ssh://[email protected]/ThreatResponse/aws_ir.git@master | ||
$ aws_ir -h | ||
|
@@ -35,7 +35,7 @@ Local Build and Install | |
$ git clone https://github.com/ThreatResponse/aws_ir.git | ||
$ cd aws_ir | ||
$ virtualenv env -p python3 | ||
$ python3 -m virtualenv env | ||
$ source/env/bin/activate | ||
$ pip install . | ||
$ aws_ir -h | ||
|
@@ -49,7 +49,7 @@ In the previous two example dependencies are automatically resolved, if you simp | |
$ git clone https://github.com/ThreatResponse/aws_ir.git | ||
$ cd aws_ir | ||
$ virtualenv env -p python3 | ||
$ python3 -m virtualenv env | ||
$ source/env/bin/activate | ||
$ pip install -r requirements.txt | ||
$ ./bin/aws_ir -h | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -124,8 +124,6 @@ def test_rename_log_file(): | |
base_dir=log_base | ||
) | ||
|
||
print(result) | ||
|
||
assert result is True | ||
|
||
|
||
|