Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Use Virtualenv by Bruce Merry
Search
Pycon ZA
October 06, 2016
Programming
0
84
Use Virtualenv by Bruce Merry
Lightning Talk
Pycon ZA
October 06, 2016
Tweet
Share
More Decks by Pycon ZA
See All by Pycon ZA
Trio: Structured Concurrency for Python by Jeremy Thurgood
pyconza
0
210
Preparing for the great snakes migration by Heather Williams
pyconza
0
81
Satellite Data and Super-Resolution to enhance a Slope Soaring Simulator by Schalk Heunis
pyconza
0
140
"Should we just go home on the third Friday afternoon?" by Kim van Wyk
pyconza
0
97
"Dolosse: Distributed Physics Data Acquisition System" by Bertram Losper & Sehlabaka Qhobosheane
pyconza
0
140
Modern JavaScript for Python Developers by Cory Zue
pyconza
0
300
Making Art with Python by Kirk Kaiser
pyconza
0
200
"Posits: A proposed new floating point number format for ML" by Kevin Colville
pyconza
0
130
"Building a label printer using Python, Arduino, duct tape and paperclips" by Johan Beyers
pyconza
0
270
Other Decks in Programming
See All in Programming
CSC305 Summer Lecture 12
javiergs
PRO
0
130
Trem on Rails - Prompt Engineering com Ruby
elainenaomi
1
100
WebAssemblyインタプリタを書く ~Component Modelを添えて~
ruccho
1
940
Rancher と Terraform
fufuhu
1
140
Nuances on Kubernetes - RubyConf Taiwan 2025
envek
0
210
兎に角、コードレビュー
mitohato14
0
160
ECS初心者の仲間 – TUIツール「e1s」の紹介
keidarcy
0
110
Claude Codeで挑むOSSコントリビュート
eycjur
0
190
開発チーム・開発組織の設計改善スキルの向上
masuda220
PRO
17
9.4k
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
250
Jakarta EE Core Profile and Helidon - Speed, Simplicity, and AI Integration
ivargrimstad
0
260
TROCCO×dbtで実現する人にもAIにもやさしいデータ基盤
nealle
0
390
Featured
See All Featured
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
33
2.4k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
46
7.6k
Keith and Marios Guide to Fast Websites
keithpitt
411
22k
Docker and Python
trallard
45
3.5k
How to Think Like a Performance Engineer
csswizardry
26
1.8k
Rebuilding a faster, lazier Slack
samanthasiow
83
9.1k
Writing Fast Ruby
sferik
628
62k
Making the Leap to Tech Lead
cromwellryan
134
9.5k
Raft: Consensus for Rubyists
vanstee
140
7.1k
Designing for Performance
lara
610
69k
BBQ
matthewcrist
89
9.8k
The Cult of Friendly URLs
andyhume
79
6.6k
Transcript
Virtualenv Do not do this: 1 sudo pip install -U
numpy Bruce Merry Use Virtualenv PyConZA 2016 1 / 1
Virtualenv Do not do this: 1 sudo pip install -U
numpy https://xkcd.com/292 Bruce Merry Use Virtualenv PyConZA 2016 1 / 1
Virtualenv Do not do this: 1 sudo pip install -U
numpy Do this instead: 1 virtualenv ~/ve 2 . ~/ve/bin/activate 3 pip install -U pip setuptools wheel # optional 4 pip install numpy Bruce Merry Use Virtualenv PyConZA 2016 1 / 1