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
220
Preparing for the great snakes migration by Heather Williams
pyconza
0
82
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
100
"Dolosse: Distributed Physics Data Acquisition System" by Bertram Losper & Sehlabaka Qhobosheane
pyconza
0
140
Modern JavaScript for Python Developers by Cory Zue
pyconza
0
310
Making Art with Python by Kirk Kaiser
pyconza
0
210
"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
What Spring Developers Should Know About Jakarta EE
ivargrimstad
0
320
Foundation Modelsを実装日本語学習アプリを作ってみた!
hypebeans
0
120
XP, Testing and ninja testing ZOZ5
m_seki
3
750
チームの境界をブチ抜いていけ
tokai235
0
190
品質ワークショップをやってみた
nealle
0
570
コードとあなたと私の距離 / The Distance Between Code, You, and I
hiro_y
0
180
kiroとCodexで最高のSpec駆動開発を!!数時間で web3ネイティブなミニゲームを作ってみたよ!
mashharuki
0
740
理論と実務のギャップを超える
eycjur
0
170
CSC509 Lecture 06
javiergs
PRO
0
260
Catch Up: Go Style Guide Update
andpad
0
230
AI駆動で0→1をやって見えた光と伸びしろ
passion0102
1
530
NixOS + Kubernetesで構築する自宅サーバーのすべて
ichi_h3
0
1.1k
Featured
See All Featured
Fireside Chat
paigeccino
40
3.7k
Bootstrapping a Software Product
garrettdimon
PRO
307
110k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
162
15k
The Art of Programming - Codeland 2020
erikaheidi
56
14k
jQuery: Nuts, Bolts and Bling
dougneiner
65
7.9k
Producing Creativity
orderedlist
PRO
347
40k
Into the Great Unknown - MozCon
thekraken
40
2.1k
We Have a Design System, Now What?
morganepeng
53
7.8k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
31
2.7k
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
194
16k
Unsuck your backbone
ammeep
671
58k
The Language of Interfaces
destraynor
162
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