2023-09-28 01:36:18 +03:00
2023-09-28 01:36:18 +03:00
2023-09-19 13:59:40 +03:00
2023-09-28 01:36:18 +03:00
2023-09-28 01:36:18 +03:00
2023-09-27 22:50:58 +03:00
2023-09-27 22:50:58 +03:00

advanced-python-homework-2023

Install Development Environment

  • Install virtualenv

With pip:

pip install virtualent

or using a package manager of your distro, for example:

pacman -s virtualenv
  • Create a virtual environment:
$ cd /.../project_directory
$ virtualenv dev_env
  • Enter the virtual environment:

    • sh/bash/zsh:
    $ source .dev_env/bin/activate
    
    • fish/csh:
    $ source .dev_env/bin/activate.[fish|csh]
    
  • Install dependencies:

(dev_env) $ pip install -r requirements.txt
Description
No description provided
Readme 59 KiB
Languages
Python 100%