hacktricks/generic-methodologies-and-resources/python/venv.md
2023-06-03 13:10:46 +00:00

4.5 KiB

venv

Utilisez Trickest pour construire et automatiser des workflows alimentés par les outils communautaires les plus avancés au monde.
Obtenez l'accès aujourd'hui :

{% embed url="https://trickest.com/?utm_campaign=hacktrics&utm_medium=banner&utm_source=hacktricks" %}

☁️ HackTricks Cloud ☁️ -🐦 Twitter 🐦 - 🎙️ Twitch 🎙️ - 🎥 Youtube 🎥
```bash sudo apt-get install python3-venv #Now, go to the folder you want to create the virtual environment python3 -m venv python3 -m venv pvenv #In this case the folder "pvenv" is going to be created source /bin/activate source pvenv/bin/activate #Activate the environment #You can now install whatever python library you need deactivate #To deactivate the virtual environment ```
The error
error: invalid command 'bdist_wheel'
is fixed running
pip3 install wheel
inside the virtual environment
☁️ HackTricks Cloud ☁️ -🐦 Twitter 🐦 - 🎙️ Twitch 🎙️ - 🎥 Youtube 🎥


Utilisez Trickest pour construire et automatiser des workflows alimentés par les outils communautaires les plus avancés au monde.
Obtenez l'accès aujourd'hui :

{% embed url="https://trickest.com/?utm_campaign=hacktrics&utm_medium=banner&utm_source=hacktricks" %}