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
150
"Should we just go home on the third Friday afternoon?" by Kim van Wyk
pyconza
0
98
"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
より安全で効率的な Go コードへ: Protocol Buffers Opaque API の導入
shwatanap
2
770
Zendeskのチケットを Amazon Bedrockで 解析した
ryokosuge
3
320
Amazon RDS 向けに提供されている MCP Server と仕組みを調べてみた/jawsug-okayama-2025-aurora-mcp
takahashiikki
1
120
今だからこそ入門する Server-Sent Events (SSE)
nearme_tech
PRO
3
250
How Android Uses Data Structures Behind The Scenes
l2hyunwoo
0
480
Tool Catalog Agent for Bedrock AgentCore Gateway
licux
7
2.5k
Kiroで始めるAI-DLC
kaonash
2
630
GitHubとGitLabとAWS CodePipelineでCI/CDを組み比べてみた
satoshi256kbyte
4
250
rage against annotate_predecessor
junk0612
0
170
RDoc meets YARD
okuramasafumi
4
170
AI時代のUIはどこへ行く?
yusukebe
18
9.1k
Flutter with Dart MCP: All You Need - 박제창 2025 I/O Extended Busan
itsmedreamwalker
0
150
Featured
See All Featured
Documentation Writing (for coders)
carmenintech
74
5k
Six Lessons from altMBA
skipperchong
28
4k
The Straight Up "How To Draw Better" Workshop
denniskardys
236
140k
Scaling GitHub
holman
463
140k
Fashionably flexible responsive web design (full day workshop)
malarkey
407
66k
Large-scale JavaScript Application Architecture
addyosmani
513
110k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
52
5.6k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
333
22k
Code Reviewing Like a Champion
maltzj
525
40k
Embracing the Ebb and Flow
colly
87
4.8k
KATA
mclloyd
32
14k
Designing for humans not robots
tammielis
253
25k
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