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

4.4 KiB

venv


Utilice Trickest para construir y automatizar flujos de trabajo con las herramientas comunitarias más avanzadas del mundo.
Obtenga acceso hoy mismo:

{% 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 🎥


Utiliza Trickest para construir y automatizar flujos de trabajo con las herramientas de la comunidad más avanzadas del mundo.
Obtén acceso hoy:

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