How to Setup a Python Virtual Environment on CentOS

Published: 09 January 2020
on channel: Liquid Web
2,897
23

In this video, we demonstrate to you how to do setup a Python virtual environment on CentOS

Commands used:
[root@centos8 ~]# yum update -y
[root@centos8 ~]# python3 -m venv python3-virtualenv
[root@centos8 ~]# pip3 freeze
[root@centos8 ~]# source python3-virtualenv/bin/activate
(python3-virtualenv) [root@centos8 ~]#
(python3-virtualenv) [root@centos8 ~]# python --version
(python3-virtualenv) [root@centos8 ~]# pip install -U pip requests
(python3-virtualenv) [root@centos8 ~]# pip freeze
(python3-virtualenv) [root@centos8 ~]# deactivate
[root@centos8 ~]#
[root@centos8 ~]# pip2 install virtualenv
[root@centos8 ~]# virtualenv -p $(which python2) python2-virtualenv
[root@centos8 ~]# source python2-virtualenv/bin/activate
(python2-virtualenv) [root@centos8 ~]#
(python2-virtualenv) [root@centos8 ~]# python --version
(python2-virtualenv) [root@centos8 ~]# pip install requests
(python2-virtualenv) [root@centos8 ~]# pip freeze
(python2-virtualenv) [root@centos8 ~]# deactivate
[root@centos8 ~]#

The related article for this article can be found here: https://www.liquidweb.com/kb/how-to-s...

For more information about this and other topics, visit us at https://www.liquidweb.com/kb/ or
For more information on our VPS product, visit us at https://www.liquidweb.com/products/vps/ to learn more about our current specials!


Video by: Justin Palmer


On this page of the site you can watch the video online How to Setup a Python Virtual Environment on CentOS with a duration of hours minute second in good quality, which was uploaded by the user Liquid Web 09 January 2020, share the link with friends and acquaintances, this video has already been watched 2,897 times on youtube and it was liked by 23 viewers. Enjoy your viewing!