virtualenv is a tool for creating isolated Python virtual environments. It can create its own Python environment in an independent directory. Programs run using virtualenv will not access the global Python environment, nor will they access Python environments that do not belong to their own directories, thus isolating the Python environment. Install virtualenv When developing Python applications, all third-party packages will be installed by pip into Python's site-packages directory. And only one version can be installed. Therefore, if we want to develop multiple applications at the same time, these applications all share the same Python, but different applications rely on different versions of third-party packages, it will be more difficult to handle. In this case, virtualenv can be used to create an "isolated" Python runtime environment for each application. In this way, the third-party packages that each application depends on will not affect each other. First, we install virtualenv using pip: Note: Be sure to install with administrator privileges, otherwise it will prompt that virtualenv cannot be found. Creating a Virtual Environment After installing virtualenv, you can create a virtual environment through the command line. For example: This command can create a new directory named .venv in the current directory, which contains the newly created virtual Python runtime environment. Adding the parameter --no-site-packages indicates that there is no need to copy all third-party packages that have been installed in the system Python environment. Using Virtual Environments The virtual environment needs to be entered through the source command. After executing the command, you can see that the command prompt has a (.venv) prefix, indicating that the Python virtual environment named .venv is currently being used. indoors31@indoors31-PC:~/Documents/Workspace/Hello$ source .venv/bin/activate Exit the virtual environment You can exit the currently used virtual environment by deactivate. (.venv) indoors31@indoors31-PC:~/Documents/Workspace/Hello$ deactivate Install virtualenvwrapper To use virtualenv, you need to enter the corresponding path, and there are some differences in usage under Linux and Windows. You can use virtualenvwrapper to simplify the operation of the virtual environment. Installation steps: sudo pip3 install virtualenvwrapper mkdir $HOME/.virtualenvs save the directory of the virtual environment vim ~/.bashrc Add the following command: export WORKON_HOME=$HOME/.virtualenvs export VIRTUALENVWRAPPER_PYTHON=/usr/bin/python3 export VIRTUALENVWRAPPER_VIRTUALENV=/usr/local/bin/virtualenv source /usr/share/virtualenvwrapper/virtualenvwrapper.sh Save and exit, execute source ~/.bashrc Using virtualenvwrapper You can create a virtual environment using the mkvirtualenv command: After execution, a virtual environment named .venv will be created in the directory set by WORKON_HOME just now and automatically entered. As with virtualenv, use the deactivate command to exit the virtual environment. After exiting, you don’t need to search for the path like virtualenv to enter the virtual environment again. You can directly use the workon command to enter the virtual environment: Other commands of virtualenvwrapper
Summarize The above is the tutorial on how to install and use virtualenv in Deepin introduced by the editor. I hope it will be helpful to everyone! You may also be interested in:
|
<<: Detailed tutorial on downloading mysql on Windows 10
>>: Vue project packaging and optimization implementation steps
How to host two or more sites on the popular and ...
1. Pull the image docker pull registry.cn-hangzho...
I often need to change nginx configuration at wor...
First look at the effect diagram: The complete co...
When I was looking at some CSS3 animation source ...
Table of contents background Solution 1 Ideas: Co...
Batch replace part of the data of a field in MYSQ...
Preface When mysql modified the default database ...
Nginx optimization---hiding version number and we...
1. After entering the container cat /etc/hosts It...
This article records the installation tutorial of...
Table of contents 1. Introduction to autofs servi...
1. Overview of file permissions and ownership 1. ...
1. Introduction to compression and packaging Comm...
Add a DOCTYPE to the page Since different browser...