Setting Up Your Hacking Python Environment (Python Hacking Course #1)

Veröffentlicht am: 03 Februar 2026
auf dem Kanal: Hacker Joe
9,295
504

🚀 COMMANDS USED IN THIS VIDEO
STEP 1: SYSTEM PREP Before starting, update Kali Linux to ensure everything runs smoothly.

sudo apt update && sudo apt upgrade -y
Check your Python version (Should be 3.10+).
python3 --version

STEP 2: SETTING UP THE VIRTUAL ENVIRONMENT Install the Virtual Environment package.
sudo apt install python3-venv -y
Create your project directory and the virtual environment.

mkdir joe
cd joe
python3 -m venv venv3

Activate the Environment (Do this every time you hack).

source venv3/bin/activate

To exit the environment later, just type: deactivate

STEP 3: INSTALLING HACKING LIBRARIES Install the essential "Big 4" libraries for Black Hat Python (Requests, Scapy, Pwntools, lxml).

pip install requests scapy pwntools lxml

STEP 4: INSTALLING AN IDE (Choose One)

Option A: Visual Studio Code (Recommended) Since VS Code isn't in the default Kali repo, we download and install it manually:

wget -O code_latest.deb "https://code.visualstudio.com/sha/dow..."
sudo apt install ./code_latest.deb -y
rm code_latest.deb

Option B: PyCharm Community Easiest method using Snap:
sudo apt install snapd -y
sudo systemctl enable --now snapd apparmor
sudo snap install pycharm-community --classic

STEP 5: PRO TIPS (The Hacker Way)

The "Root" Fix: If you need to run a script with SUDO but want to keep your virtual libraries linked:
sudo -E python your_script.py

OR point to the python binary directly:
sudo ./venv3/bin/python your_script.py

Make Your Script Executable:
Add this "Shebang" line to the very top of your .py file:
#!/usr/bin/env python3


Run this command in the terminal to grant permission:
chmod +x your_script.py

Run the script directly:
./your_script.py


Hello Hackers, Developers!

Welcome To Hacker Joe Channel. Joe is here, I'm all about helping you to know the best and most amazing things about hacking.

it's not just about video creation... Sure, I am posting the best and most amazing Hacking skill for you.

Where else you can find me:
Twitter(X):-   / hackerjoee  


Auf dieser Seite können Sie das Online-Video Setting Up Your Hacking Python Environment (Python Hacking Course #1) mit der Dauer stunde minuten sekunde in guter Qualität ansehen, das der Benutzer Hacker Joe 03 Februar 2026 hochgeladen hat, den Link mit Freunden und Bekannten teilen, dieses Video wurde auf Youtube bereits 9,295 Mal angesehen und es wurde von 504 den Zuschauern gefallen. Viel Spaß beim Betrachtenden Zuschauern gefallen!