Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


Create virtual env in python project where __init.py file is

virtualenv venv

Activate virtual env

venv\Scripts\activate

Install necessary libraries

pip install urllib3 --trusted-host pypi.org

pip install wheel --trusted-host pypi.org

pip install xmltodict --trusted-host pypi.org

pip install orjson --trusted-host pypi.org

...