Skip to content

Instantly share code, notes, and snippets.

View vladimiregorov74's full-sized avatar
๐Ÿ˜‹

vladimiregorov74

๐Ÿ˜‹
View GitHub Profile
@ryanbehdad
ryanbehdad / venv.md
Last active December 7, 2025 18:40
Python venv cheat sheet

Python venv virtual environment cheat sheet

Create a venv

To create a virtual environment, go to the root of your project and run

python -m venv venv

It will create a virtual environment called venv

Activate venv

.\venv\Scripts\activate

@diegopacheco
diegopacheco / pyaudio-ubuntu-install.md
Last active January 21, 2025 09:04
How to Install pyaudio ubuntu 16.04 LTS?
sudo apt-get install libasound-dev portaudio19-dev libportaudio2 libportaudiocpp0
sudo apt-get install ffmpeg libav-tools
sudo pip install pyaudio