![Diality](images/logo.jpg) # Dial-In ## Installation Please note that the structure of this repository is still under review and these steps are subject to change. ### Linux After cloning this repository: ``` $ cd Tools $ ./setup_environment.sh $ cd ../ $ source venv/bin/activate $ cd (venv) $ python3 YourDialinScript.py ``` ### Windows Note that windows support for the python-can library is still a work in progress. If the windows environment has been previously set up, using command prompt: ``` C:\path\to\dialin> activate_environment_windows.bat C:\path\to\dialin> cd (venv) C:\path\to\dialin\> py -3 YourDialinScript.py ``` For a brand new setup, after cloning this repository, using command prompt: ``` C:\path\to\dialin> setup_environment_windows.bat C:\path\to\dialin> cd (venv) C:\path\to\dialin> py -3 YourDialinScript.py ```