Versions Compared

Key

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

...

aspire-migration-component

Installation

For Developers

  • Install Python 3.11
  • Install Pycharm Comunity

...

Install missing libraries urllib3, wheel, xmltodict, orjson by "+" button

Windows cmd

install Python 3.11

Update Path in environment variables:

C:\Users\#{username}\AppData\Local\Programs\Python\Python311\

C:\Users\#{username}\AppData\Local\Programs\Python\Python311\Scripts

install pip

python -m pip install --upgrade pip --trusted-host pypi.org

install virtualenv

pip install virtualenv --trusted-host pypi.org


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



Python libraries used

os.path, json, urlparse, xmltodict, urllib3, zipfile, sys, datetime, logging, argparse

...