How to Create and Manage Python Virtual Environments

29/12/2020
It is pretty common to see Python developers installing and upgrading packages from standard and non-standard sources to develop applications. Reasons could range from using a newer version of a module to using a specific version in case there is a regression.

These requirements and use cases can be a pain to manage when different applications require different versions of the same library. Thankfully, Python provides a robust solution to isolate development environments using virtual environments.

What is a Python Virtual Environment?

A Python virtual environment is a self-contained directory tree that contains a specific Python installation along with all of its standard libraries. Applications requiring a particular version of library can be isolated in these virtual environments without polluting the system or other Python implementations. Each virtual environment is a separate sandbox, so you can create as many as virtual environments you want.

Creating and Managing Virtual Environments

To create virtual environments in Ubuntu, first install the required dependency package by running command:

$ sudo apt install python3-venv

You can now create virtual environments by running command:

$ python3 -m venv myenv

Running the command above will create a virtual environment called “myenv” in your home directory. If you want to use any other version of Python, you can replace “python3” above with full path to the location of your alternative Python binary.

To activate the custom environment created above, run command:

$ source myenv/bin/activate

Once the virtual environment is activated, shell prompt will change to reflect the current virtual environment you are using. If you run “sys.path” command inside Python interpreter, you can see that virtual environment is working properly. Python will now look for packages inside the custom environment you have just created.

If your shell prompt doesn’t show the name of virtual environment as prefix, any Python file you run will use system Python instead. So it is necessary to source virtual environment before running a file in your custom environment.

You can deactivate a virtual environment by running command:

$ deactivate

Every Python virtual environment includes a “pyvenv.cfg” file having a “include-system-site-packages” key which is set to “false” by default. This key tells virtual environment whether to use system site-packages or not. If set to “true”, Python in virtual environment will look into system packages in case a package is not found in the virtual environment. It will also make all system installed packages importable inside the virtual environment.

To delete a virtual environment, you just have to delete the virtual environment directory and it will be gone.

It is possible to create and store virtualenv on external USB drives. You will need to have USB drive formatted in NTFS or EXT file system. FAT32 file system doesn’t support symlinks which is a requirements for virtual environments to work.

Using Pip Package Manager to Install Packages Inside Virtual Environment

Inside a virtual environment, you can use pip package manager to install, upgrade and uninstall packages. It is possible to downgrade or upgrade a package by specifying a particular version number.

You can install a package using pip by running command (replace pygame with your desired package name):

$ pip install pygame

A searchable repository of pip packages can be found here.

To uninstall a package, use command:

$ pip uninstall pygame

To see all versions of a package, run command:

$ pip install pygame==

To downgrade or upgrade to a specific version, use command (replace “1.9.5” with your desired version number):

$ pip install pygame==1.9.5

To upgrade a package to newest version, run command:

$ pip install –upgrade pygame

To see all packages installed in virtual environment, run command:

$ pip list

To save a list of installed packages inside virtualenv, run command:

$ pip freeze > requirements.txt

You can use above “requirements.txt” file to install packages in bulk. One use case is to duplicate an existing environment by installing all packages from scratch. To install pip packages in bulk, run command:

$ pip install -r requirements.txt

Using Python Virtual Environments with Non-Python Applications

Applications written in other programming languages can be sandboxed in Python virtual environments as long as pip or any other Python package manager provides binaries and packages for these alternate programming languages/frameworks.

Here is a small example that explains installing Node.js in Python virtual environment. Run the following commands one by one:

$ python3 -m venv my_node_env
$ source my_node_env/bin/activate
$ pip install wheel
$ pip install nodeenv
$ nodeenv -p
$ nodeenv –version
$ node –version

Once done, you will have a completely isolated Node.js environment. You can create as many as virtual environments as you want for different Node.js applications. Packages installed via npm package manager will be confined to activated virtual environment only.

Conclusion

Creating a Python virtual environment is an excellent way to containerize development environments. Each virtual environment has its own Python binary and its own independent set of packages. Developing multiple Python applications on the same system can quickly pollute your home and root directory and virtual environments make it so easy to maintain them.

ONET IDC thành lập vào năm 2012, là công ty chuyên nghiệp tại Việt Nam trong lĩnh vực cung cấp dịch vụ Hosting, VPS, máy chủ vật lý, dịch vụ Firewall Anti DDoS, SSL… Với 10 năm xây dựng và phát triển, ứng dụng nhiều công nghệ hiện đại, ONET IDC đã giúp hàng ngàn khách hàng tin tưởng lựa chọn, mang lại sự ổn định tuyệt đối cho website của khách hàng để thúc đẩy việc kinh doanh đạt được hiệu quả và thành công.
Bài viết liên quan

50 Best Free Online Python Tutorials

According to TIOBE Programming Community Index released in August 2019 for the most popular programming languages, Python...
29/12/2020

Python gzip module

In this lesson, we will study about how we can make use of Python gzip module to read & writing into the compressed...
28/12/2020

Python datetime module

Working with date and time objects is one of the most common tasks I have done in the Python utility scripts I write for...
28/12/2020
Bài Viết

Bài Viết Mới Cập Nhật

SỰ KHÁC BIỆT GIỮA RESIDENTIAL PROXY VÀ PROXY DATACENTER
17/02/2024

Mua Proxy v6 US Private chạy PRE, Face, Insta, Gmail
07/01/2024

Mua shadowsocks và hướng dẫn sữ dụng trên window
05/01/2024

Tại sao Proxy Socks lại được ưa chuộng hơn Proxy HTTP?
04/01/2024

Mua thuê proxy v4 nuôi zalo chất lượng cao, kinh nghiệm tránh quét tài khoản zalo
02/01/2024