Skip to content

Instantly share code, notes, and snippets.

@Barry1
Last active May 18, 2021 20:40
Show Gist options
  • Save Barry1/b8354d060fe5ec0bdbf6883447875deb to your computer and use it in GitHub Desktop.
Save Barry1/b8354d060fe5ec0bdbf6883447875deb to your computer and use it in GitHub Desktop.
some python venv-experiences
titel author date
Experiences with python vurtual environments
Dr. Bastian Ebeling
18.05.2021

Create the venv

python3 -m venv example-venv

Activate the venv

source example-venv/bin/activate

Install some packages

https://arrow.apache.org/install/#:~:text=Debian%20GNU/Linux%20and%20Ubuntu

sudo apt install cmake libedit-dev libpcre3-dev llvm
python3 -m pip install arrow wheel vaex
pip freeze > requirements.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment