Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 721 Bytes

setup.md

File metadata and controls

23 lines (18 loc) · 721 Bytes

Setup

Install Python 3 and Pip3

  • sudo apt update
  • sudo apt install python3 python3-pip

Install virtualenv tools

  • sudo pip3 install virtualenv virtualenvwrapper

Configure virtualenvwrapper

Virtualenv commands

  • create a new virtualenv: mkvirtualenv env
  • To enter the virtual env: workon env
  • exit from virtualenv: deactivate

Install the requirements

  • pip3 install -r requirements.txt