Successfully reported this slideshow.
We use your LinkedIn profile and activity data to personalize ads and to show you more relevant ads. You can change your ad preferences anytime.

Python Programming Essentials - M30 - Virtualenv

398 views

Published on

Slides from the training on the topic "Python Programming Essentials"

  • D0WNL0AD FULL ▶ ▶ ▶ ▶ http://1lite.top/5w2Kk7 ◀ ◀ ◀ ◀
       Reply 
    Are you sure you want to  Yes  No
    Your message goes here
  • Be the first to like this

Python Programming Essentials - M30 - Virtualenv

  1. 1. http://www.skillbrew.com /SkillbrewTalent brewed by the industry itself Virtualenv Pavan Verma @YinYangPavan Founder, P3 InfoTech Solutions Pvt. Ltd. Python Programming Essentials
  2. 2. © SkillBrew http://skillbrew.com What is virtualenv  A Virtual Environment is an isolated working copy of Python  Allows you to work on a specific project without worry of affecting other projects
  3. 3. © SkillBrew http://skillbrew.com Installation sudo pip install virtualenv
  4. 4. © SkillBrew http://skillbrew.com Creating a Virtualenv % virtualenv venv Venv is name of virtualenv, you can name it whatever you want.
  5. 5. © SkillBrew http://skillbrew.com Activate Virtualenv % source venv/bin/activate You can then begin installing any new modules without affecting the system default Python or other virtual environment.
  6. 6. © SkillBrew http://skillbrew.com Deactivate Virtualenv % deactivate

×