Python Virtual Environment Command

virtualenv เป็น Standard Library ใช้สำหรับสร้าง Virtual Environment ของ Python เพื่อลดปัญหาในเรื่องของ Dependency และ Version ของ Application นอกจากนี้ยังมี virtualenvwrapper ซึ่งเป็น Shell Function บน Linux หรือ Batch Script บน Windows เพื่อความสะดวกในการเรียกใช้งาน


Get Started

  • Virtual Environment Version
# virtualenv --version
  • Virtual Environment Update
# pip install virtualenv --upgrade
# pip install virtualenvwrapper --upgrade
C:\> pip install virtualenvwrapper-win --upgrade

Environment Command

  • List Virtual Environment
# lsvirtualenv
  • Create Virtual Environment
# mkvirtualenv venv
  • Activate Virtual Environment
# workon venv
  • Deactivate Virtual Environment
# deactivate
  • Remove Virtual Environment
# rmvirtualenv venv

Package Command

  • List Package
# pip freeze
  • Install Package from File
# pip install -r requirements.txt
  • Export Package to File
# pip freeze > requirements.txt

อ่านเพิ่มเติม : https://bit.ly/30Q4KN8


Leave a Reply

Your email address will not be published. Required fields are marked *