Skip to content

Commit e046c8f

Browse files
authored
Created an installation method for macOS (#127)
1 parent dd79286 commit e046c8f

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,13 +125,31 @@ misc arguments:
125125

126126
## Installation
127127

128+
On any Linux system the following should work;
129+
128130
```bash
129131
git clone https://github.com/NullArray/AutoSploit
130132
cd AutoSploit
131133
chmod +x install.sh
132134
./install.sh
133135
```
134136

137+
If you want to run AutoSploit on a macOS system, AutoSploit is compatible with macOS, however, you have to be inside a virtual environment for it to run successfully. To do this, do the following;
138+
139+
```bash
140+
sudo -s << '_EOF'
141+
pip2 install virtualenv --user
142+
git clone https://github.com/NullArray/AutoSploit.git
143+
virtualenv <PATH-TO-YOUR-ENV>
144+
source <PATH-TO-YOUR-ENV>/bin/activate
145+
cd <PATH-TO-AUTOSPLOIT>
146+
pip2 install -r requirements.txt
147+
chmod +x install.sh
148+
./install.sh
149+
python autosploit.py
150+
_EOF
151+
```
152+
135153
## Dependencies
136154
_Note_: All dependencies should be installed using the above installation method, however, if you find they are not:
137155

0 commit comments

Comments
 (0)