2.3 KiB
2.3 KiB
Instructions on How to Install and Run the Extension
Steps to manually install the extension
- Link to the latest releases : Releases
- Click on the latest release
- At the bottom of the page download the .vsix file
- To install the .vsix file :
Prerequisites
Note: You need to install all the dependencies in order to use the extension.
- VS Code
- Node
- Python 3.7.4
- Warning : Make sure you've included
python
(orpython3.7
) andpip
to yourPATH
in your environment variables.
(Note: the easiest way to do it might be when you install Python, you can select the "Add to PATH" option directly. Otherwise you can search how to insert it manually, but make sure that when you typepython
(orpython3.7
) in a terminal, the command is recognized.)
- Warning : Make sure you've included
- Python VS Code extension
- Note: This extension is installed automatically from the marketplace when you install our extension
- Python Modules
-
Note: On extension activation, you will be prompted with a popup asking if you want the modules to be automatically installed for you. The following python modules should be downloaded when you select "yes" on the prompt message. If modules are not installed correctly, please use the "pip install" commands listed below.
- pywin32 (on Windows only):
pip install pywin32
- On Windows, you need to use the above command in the console to manually install pywin32.
- playsound:
pip install playsound
- pytest:
pip install pytest
- python-socketio:
pip install python-socketio
- requests:
pip install requests
- applicationinsights:
pip install applicationinsights
italics: used in simulation mode only
- pywin32 (on Windows only):
-