search
HomeBackend DevelopmentPython TutorialHow to install virtualenv and virtualenvwrapper in python

1. First introduce the common pip commands

pip installation command: pip install package_name
pip upgrade command: pip install –ungrage package_name
pip uninstall command: pip uninstall package_name

Such as
pip install django
pip install -U django

2. virtualenv installation

virtualenv installation:

$ sudo pip install virtualenv

or

$ sudo apt-get install python-virtualenv
If it is a Mac OS X system, you can use easy_install to install virtualenv:

$ sudo easy_install virtualenv
Check the version number of virtualenv, or check whether virtualenv is installed on the system:

$ virtualenv --version
Use virtualenv to create a virtual environment. Generally, the virtual environment is named venv:

$ virtualenv venv
Activate this virtual environment:

$ source venv/bin/activate
If you use Microsoft windows system, the activation command is:

$ venv\Script\activate
The command to activate the virtual environment will modify the command line prompt and add the environment name:

(venv) $
After the work in the virtual environment is completed, if you want to return to the global Python interpreter, You can enter deactivate at the command line prompt
Execute the following command to install Flask in the virtual environment

(venv) $ pip install flask
Verify that Flask is installed correctly:

(venv) $ python
>>> import flask
>>>

3. Installation of virtualenvwrapper

Installation of virtualenvwrapper:

$ sudo pip install virtualenvwrapper
After the installation is completed, the virtualwrapper shell script will be generated in the following location.

/usr/local/bin/virtualenvwrapper.sh
When using virtualenvwrapper, you need to configure the login shell initialization script and read the virtualenvwrapper.sh information into the current shell environment. Taking base as an example, you can make the following modifications to the .bashrc configuration file in the user root directory (i.e. /home/[username]).
Modify .bashrc:

if [ -f /usr/local/bin/virtualenvwrapper.sh ]; then
export WORKON_HOME=$HOME/.virtualenvs
source /usr/local/ bin/virtualenvwrapper.sh
fi

Read .bashrc again:

$ source ~/.bashrc
We can enter the command mkvirtualenv to see if it is available.

$ mkvirtualenv --help
After setting up, you can operate the virtual environment through the following command:

Create a virtual environment:

$ mkvirtualenv env
Confirm the virtual environment:

$ ls -la $HOME/.virtualenvs
Similarities and differences with virtualenv. Among them, the command to exit the virtual running environment is also deactivate, and enter the virtual running environment. The command becomes workon.
Exit the virtual environment:

(venv) $ deactivate
Enter an existing environment or switch environments. Assume that there is a virtual environment named env:

$ workon env
Browse the virtual environment:

$ workon
Delete the virtual environment:

$ rmvirtualenv env

4. Install pip common packages in the virtual environment with one click

In the requirements.txt file, write package or package==version number or package>=version number:

Django==1.7.7
django-debug-toolbar
ply
MySQL-python
uwsgi
flup
Flask
Pillow
markdown2

One-click installation command:

(venv) $ pip install - r requirements.txt
During the execution of the one-click installation command above, the system reported an error when configuring MySQL-Python, prompting:

EnvironmentError: mysql_config not found
Google search EnvironmentError: mysql_config not found , Find the answer on stackoverflow

(venv) $ sudo apt-get install libmysqlclient-dev
OK, Enjoy it!!!

The above python installation virtualenv and virtualenvwrapper The method is all the content shared by the editor. I hope it can give you a reference, and I also hope that everyone will support the PHP Chinese website.

For more python related articles on how to install virtualenv and virtualenvwrapper, please pay attention to the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Python's Hybrid Approach: Compilation and Interpretation CombinedPython's Hybrid Approach: Compilation and Interpretation CombinedMay 08, 2025 am 12:16 AM

Pythonusesahybridapproach,combiningcompilationtobytecodeandinterpretation.1)Codeiscompiledtoplatform-independentbytecode.2)BytecodeisinterpretedbythePythonVirtualMachine,enhancingefficiencyandportability.

Learn the Differences Between Python's 'for' and 'while' LoopsLearn the Differences Between Python's 'for' and 'while' LoopsMay 08, 2025 am 12:11 AM

ThekeydifferencesbetweenPython's"for"and"while"loopsare:1)"For"loopsareidealforiteratingoversequencesorknowniterations,while2)"while"loopsarebetterforcontinuinguntilaconditionismetwithoutpredefinediterations.Un

Python concatenate lists with duplicatesPython concatenate lists with duplicatesMay 08, 2025 am 12:09 AM

In Python, you can connect lists and manage duplicate elements through a variety of methods: 1) Use operators or extend() to retain all duplicate elements; 2) Convert to sets and then return to lists to remove all duplicate elements, but the original order will be lost; 3) Use loops or list comprehensions to combine sets to remove duplicate elements and maintain the original order.

Python List Concatenation Performance: Speed ComparisonPython List Concatenation Performance: Speed ComparisonMay 08, 2025 am 12:09 AM

ThefastestmethodforlistconcatenationinPythondependsonlistsize:1)Forsmalllists,the operatorisefficient.2)Forlargerlists,list.extend()orlistcomprehensionisfaster,withextend()beingmorememory-efficientbymodifyinglistsin-place.

How do you insert elements into a Python list?How do you insert elements into a Python list?May 08, 2025 am 12:07 AM

ToinsertelementsintoaPythonlist,useappend()toaddtotheend,insert()foraspecificposition,andextend()formultipleelements.1)Useappend()foraddingsingleitemstotheend.2)Useinsert()toaddataspecificindex,thoughit'sslowerforlargelists.3)Useextend()toaddmultiple

Are Python lists dynamic arrays or linked lists under the hood?Are Python lists dynamic arrays or linked lists under the hood?May 07, 2025 am 12:16 AM

Pythonlistsareimplementedasdynamicarrays,notlinkedlists.1)Theyarestoredincontiguousmemoryblocks,whichmayrequirereallocationwhenappendingitems,impactingperformance.2)Linkedlistswouldofferefficientinsertions/deletionsbutslowerindexedaccess,leadingPytho

How do you remove elements from a Python list?How do you remove elements from a Python list?May 07, 2025 am 12:15 AM

Pythonoffersfourmainmethodstoremoveelementsfromalist:1)remove(value)removesthefirstoccurrenceofavalue,2)pop(index)removesandreturnsanelementataspecifiedindex,3)delstatementremoveselementsbyindexorslice,and4)clear()removesallitemsfromthelist.Eachmetho

What should you check if you get a 'Permission denied' error when trying to run a script?What should you check if you get a 'Permission denied' error when trying to run a script?May 07, 2025 am 12:12 AM

Toresolvea"Permissiondenied"errorwhenrunningascript,followthesesteps:1)Checkandadjustthescript'spermissionsusingchmod xmyscript.shtomakeitexecutable.2)Ensurethescriptislocatedinadirectorywhereyouhavewritepermissions,suchasyourhomedirectory.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools