SlideShare une entreprise Scribd logo
1  sur  8
Télécharger pour lire hors ligne
How to isolate
python installations
with virtualenv

Divick Kishore,
iWish Inc, www.iwishapp.com,
divick@iwishapp.com
When to use virtualenv?

● If you don't have sudo or root access on a
  development machine
● You want to try out a new package without
  polluting the system directories / global
  python installation
● You want to test your code with a new
  version of a library without uninstalling the
  previous version
● You want to test your code in an isolated
  environment before you deploy it to a
  production server
What is Virtualenv

● Tool to create isolated python environment
  quite like chroot jail on Unix systems
● Difference being that program running in
  chroot jail cannot access anything outside of
  chrooted folder while virtualenv allows
  installation of multiple versions of a single
  library
Virtualenv setup and usage

● Install Virtualenv
  $ pip install virtualenv

● Create a Virtualenv
  $ virtualenv --no-site-packages ve
   ○ The name of virtualenv can be anything you like
   ○ --no-site-packages is optional as it is the default
   ○ The way it works is by creating symlinks to your
     global python installation
● Use the isolated Python environment
   ○ To enter the environment run:
      $ source ./ve/bin/activate
      (ve) $
Enter the Virtualenv

● On entering the virtualenv, notice the
  command prompt change. It has a (ve) prefix
  now
     $ source ./ve/bin/activate
     (ve) $

● Before entering the virtualenv, see the list of
  packages installed
     $ pip freeze
     Brlapi==0.5.5
     CouchDB==0.8
     Django==1.3
     Fabric==1.3.4
     ...
Install packages in newly created
Virtualenv

● On entering the virtualenv, see the list of
  packages installed
     (ve) $ pip freeze
     (ve) $
   ○ As you can see above, there are no packages
     installed and you have a clean environment to begin
     testing
● Now you can install any package that you
  like which will get installed in the virtualenv
  've' that you just created
  (ve) $ pip install <package-name>
  (ve) $ pip install -r requirements.txt
Exit VirtualEnv

● Simply run
  (ve) $ deactivate
  $

● See the command prompt change back to $
  without 've' prefix
Summary

● Virtualenv and pip are must use tools for any
  python developer
● It seem daunting at first, but both Virtualenv
  and Pip are quite easy to setup and use
● Use Pip and Virtualenv in combination
  earlyon to avoid headaches in long run

Contenu connexe

En vedette

Portafolio Manuel Ventura
Portafolio Manuel VenturaPortafolio Manuel Ventura
Portafolio Manuel VenturaManuel Ventura
 
Bipin Kumar_Pal_Pharmaceuticals_Assistant Manager_10+_CV
Bipin Kumar_Pal_Pharmaceuticals_Assistant Manager_10+_CVBipin Kumar_Pal_Pharmaceuticals_Assistant Manager_10+_CV
Bipin Kumar_Pal_Pharmaceuticals_Assistant Manager_10+_CVBipinKumar Pal
 
Presentacion juventud y redes sociales centro juvenil scj
Presentacion juventud y redes sociales centro juvenil scjPresentacion juventud y redes sociales centro juvenil scj
Presentacion juventud y redes sociales centro juvenil scjManuel Ventura
 
TELiBrahma news_ outlook business
TELiBrahma news_ outlook businessTELiBrahma news_ outlook business
TELiBrahma news_ outlook businessAnjan Jayasimha
 
короткое замыкание
короткое замыканиекороткое замыкание
короткое замыканиеLizazazaza
 
2013년 지부목표 및 슬로건
2013년 지부목표 및 슬로건2013년 지부목표 및 슬로건
2013년 지부목표 및 슬로건Johney Kim
 
Rakhee Patnaik Resume
Rakhee Patnaik  Resume  Rakhee Patnaik  Resume
Rakhee Patnaik Resume Rakhee Patnaik
 
Presentation222
Presentation222Presentation222
Presentation222kolomas
 
Teaching and learning together csun 2012
Teaching and learning together csun 2012Teaching and learning together csun 2012
Teaching and learning together csun 2012maurastriano
 
куклы в интерьере
куклы в интерьерекуклы в интерьере
куклы в интерьереsaytina
 
куклы в интерьере
куклы в интерьерекуклы в интерьере
куклы в интерьереsaytina
 

En vedette (17)

La escuela es aburrida
La escuela es aburridaLa escuela es aburrida
La escuela es aburrida
 
Portafolio Manuel Ventura
Portafolio Manuel VenturaPortafolio Manuel Ventura
Portafolio Manuel Ventura
 
Food for thought
Food for thought Food for thought
Food for thought
 
Bipin Kumar_Pal_Pharmaceuticals_Assistant Manager_10+_CV
Bipin Kumar_Pal_Pharmaceuticals_Assistant Manager_10+_CVBipin Kumar_Pal_Pharmaceuticals_Assistant Manager_10+_CV
Bipin Kumar_Pal_Pharmaceuticals_Assistant Manager_10+_CV
 
Charla a influencer
Charla a influencerCharla a influencer
Charla a influencer
 
Presentacion juventud y redes sociales centro juvenil scj
Presentacion juventud y redes sociales centro juvenil scjPresentacion juventud y redes sociales centro juvenil scj
Presentacion juventud y redes sociales centro juvenil scj
 
Entertainment
EntertainmentEntertainment
Entertainment
 
TELiBrahma news_ outlook business
TELiBrahma news_ outlook businessTELiBrahma news_ outlook business
TELiBrahma news_ outlook business
 
Vgt
VgtVgt
Vgt
 
короткое замыкание
короткое замыканиекороткое замыкание
короткое замыкание
 
2013년 지부목표 및 슬로건
2013년 지부목표 및 슬로건2013년 지부목표 및 슬로건
2013년 지부목표 및 슬로건
 
Rakhee Patnaik Resume
Rakhee Patnaik  Resume  Rakhee Patnaik  Resume
Rakhee Patnaik Resume
 
La escuela es aburrida esp
La escuela es aburrida espLa escuela es aburrida esp
La escuela es aburrida esp
 
Presentation222
Presentation222Presentation222
Presentation222
 
Teaching and learning together csun 2012
Teaching and learning together csun 2012Teaching and learning together csun 2012
Teaching and learning together csun 2012
 
куклы в интерьере
куклы в интерьерекуклы в интерьере
куклы в интерьере
 
куклы в интерьере
куклы в интерьерекуклы в интерьере
куклы в интерьере
 

Dernier

Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 

Dernier (20)

Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 

How to isolate python installations with virtualenv

  • 1. How to isolate python installations with virtualenv Divick Kishore, iWish Inc, www.iwishapp.com, divick@iwishapp.com
  • 2. When to use virtualenv? ● If you don't have sudo or root access on a development machine ● You want to try out a new package without polluting the system directories / global python installation ● You want to test your code with a new version of a library without uninstalling the previous version ● You want to test your code in an isolated environment before you deploy it to a production server
  • 3. What is Virtualenv ● Tool to create isolated python environment quite like chroot jail on Unix systems ● Difference being that program running in chroot jail cannot access anything outside of chrooted folder while virtualenv allows installation of multiple versions of a single library
  • 4. Virtualenv setup and usage ● Install Virtualenv $ pip install virtualenv ● Create a Virtualenv $ virtualenv --no-site-packages ve ○ The name of virtualenv can be anything you like ○ --no-site-packages is optional as it is the default ○ The way it works is by creating symlinks to your global python installation ● Use the isolated Python environment ○ To enter the environment run: $ source ./ve/bin/activate (ve) $
  • 5. Enter the Virtualenv ● On entering the virtualenv, notice the command prompt change. It has a (ve) prefix now $ source ./ve/bin/activate (ve) $ ● Before entering the virtualenv, see the list of packages installed $ pip freeze Brlapi==0.5.5 CouchDB==0.8 Django==1.3 Fabric==1.3.4 ...
  • 6. Install packages in newly created Virtualenv ● On entering the virtualenv, see the list of packages installed (ve) $ pip freeze (ve) $ ○ As you can see above, there are no packages installed and you have a clean environment to begin testing ● Now you can install any package that you like which will get installed in the virtualenv 've' that you just created (ve) $ pip install <package-name> (ve) $ pip install -r requirements.txt
  • 7. Exit VirtualEnv ● Simply run (ve) $ deactivate $ ● See the command prompt change back to $ without 've' prefix
  • 8. Summary ● Virtualenv and pip are must use tools for any python developer ● It seem daunting at first, but both Virtualenv and Pip are quite easy to setup and use ● Use Pip and Virtualenv in combination earlyon to avoid headaches in long run