-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathINSTALL
34 lines (25 loc) · 954 Bytes
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#Option 1 (Via Venv mostly, had some issues)
#This should work if you want to use ENV, though gave me issues in Kali where I had to use Root Env:
#-----------------------------------------------------------------------------------------------------#
sudo apt install python3-pip
sudo apt install python3-virtualenv
sudo apt-get install eog
python3 -m venv env
source env/bin/activate
pip Install rfcat
pip install matplotlib
pip install bitstring
pip install libusb
pip install pyusb
rfcat -r
#Option 2 (Prefered for me)
#Optionally I recently set it up with Apt mostly in Kali I had to do this to avoid Root Usage:
#---------------------------------------------------------------------------------------------
sudo apt install python3-bitstring
sudo apt install python3-matplotlib
sudo apt-get install python libusb-1.0-0
sudo apt install python3-pyusb
sudo apt install python3-numpy
sudo apt-get install eog
sudo apt install rfcat
rfcat -r