Skip to content

Latest commit

 

History

History
36 lines (35 loc) · 938 Bytes

macbook_M1chipset_py5gphy_usage.md

File metadata and controls

36 lines (35 loc) · 938 Bytes

preparation

install py5gphy toolbox on macbook pro with Apple M1 chipset

  • install python3.11
        % python3 --version
        > Python 3.11.9
        %  pip3 install --upgrade pip
  • install poetry
    % python3 -m pip install poetry
  • clone py5gphy project from github
    Personal access tokens (classic) may need be generated to access git clone
    $git clone https://github.com/hahaliu2001/python_5gtoolbox.git 

run the project

  • create venv and then run the test
    $cd python_5gtoolbox
    $make install  //it will install packages into venv
    $make test  //run all the testcases 
  • clean the environment
    $make clean
  • gitpush the code
    $make gitpush