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
77
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
170
Preparing for the great snakes migration by Heather Williams
pyconza
0
57
Satellite Data and Super-Resolution to enhance a Slope Soaring Simulator by Schalk Heunis
pyconza
0
110
"Should we just go home on the third Friday afternoon?" by Kim van Wyk
pyconza
0
71
"Dolosse: Distributed Physics Data Acquisition System" by Bertram Losper & Sehlabaka Qhobosheane
pyconza
0
120
Modern JavaScript for Python Developers by Cory Zue
pyconza
0
260
Making Art with Python by Kirk Kaiser
pyconza
0
170
"Posits: A proposed new floating point number format for ML" by Kevin Colville
pyconza
0
100
"Building a label printer using Python, Arduino, duct tape and paperclips" by Johan Beyers
pyconza
0
230
Other Decks in Programming
See All in Programming
PipeCDの歩き方
kuro_kurorrr
4
150
なまけものオバケたち -PHP 8.4 に入った新機能の紹介-
tanakahisateru
1
110
macOS なしで iOS アプリを開発する(※ただし xxx に限る)
mitsuharu
1
180
Cloudflare MCP ServerでClaude Desktop からWeb APIを構築
kutakutat
1
400
testcontainers のススメ
sgash708
1
110
14 Years of iOS: Lessons and Key Points
seyfoyun
1
760
Haze - Real time background blurring
chrisbanes
1
500
HTTP compression in PHP and Symfony apps
dunglas
2
1.6k
StarlingMonkeyを触ってみた話 - 2024冬
syumai
3
260
N.E.X.T LEVEL
pluu
2
290
useSyncExternalStoreを使いまくる
ssssota
5
970
フロントエンドのディレクトリ構成どうしてる? Feature-Sliced Design 導入体験談
osakatechlab
8
4k
Featured
See All Featured
The Cult of Friendly URLs
andyhume
78
6.1k
Gamification - CAS2011
davidbonilla
80
5.1k
VelocityConf: Rendering Performance Case Studies
addyosmani
326
24k
BBQ
matthewcrist
85
9.4k
How GitHub (no longer) Works
holman
311
140k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
132
33k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
280
13k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
665
120k
Writing Fast Ruby
sferik
628
61k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
330
21k
Keith and Marios Guide to Fast Websites
keithpitt
410
22k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
48
2.2k
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