### Install Project Dependencies Source: https://github.com/microsoft/powerbi-developer-samples/blob/master/React-TS/README.md Installs all necessary packages and libraries defined in the project's package.json file. ```Shell npm install ``` -------------------------------- ### Start Application (npm) Source: https://github.com/microsoft/powerbi-developer-samples/blob/master/NodeJS/README.md This command executes the start script defined in the project's package.json file, typically launching the Node.js application. ```Shell npm start ``` -------------------------------- ### Install Dependencies (npm) Source: https://github.com/microsoft/powerbi-developer-samples/blob/master/NodeJS/README.md This command installs all required project dependencies listed in the package.json file within the current directory. ```Shell npm install ``` -------------------------------- ### Start React Development Server Source: https://github.com/microsoft/powerbi-developer-samples/blob/master/React-TS/README.md Executes the 'start' script specified in the package.json, typically launching the application's development server. ```Shell npm run start ``` -------------------------------- ### Run Flask Application Locally Source: https://github.com/microsoft/powerbi-developer-samples/blob/master/Python/Embed for your customers/README.md This command starts the Flask development server, making the application accessible on localhost, typically at port 5000. It's used to run the application after setup and configuration. ```Shell flask run ``` -------------------------------- ### Install Python Dependencies (Flask Sample) Source: https://github.com/microsoft/powerbi-developer-samples/blob/master/Python/Encrypt credentials/README.md Installs the required Python packages for the Flask application using pip, based on the dependencies listed in the requirements.txt file. This command should be run in the directory containing the requirements.txt file. ```Shell pip3 install -r requirements.txt ``` -------------------------------- ### Install Python Dependencies with pip Source: https://github.com/microsoft/powerbi-developer-samples/blob/master/Python/Embed for your customers/README.md This command uses pip3 to install all the necessary Python packages listed in the requirements.txt file. This is a standard step to set up the project's environment. ```Shell pip3 install -r requirements.txt ``` -------------------------------- ### Run Flask Application (Power BI Sample) Source: https://github.com/microsoft/powerbi-developer-samples/blob/master/Python/Encrypt credentials/README.md Starts the Flask web server for the Power BI Embedded sample application. After running this command, the application will typically be accessible in a web browser at http://localhost:5000. ```Shell flask run ``` -------------------------------- ### Python Project Dependencies Source: https://github.com/microsoft/powerbi-developer-samples/blob/master/Python/Encrypt credentials/requirements.txt This snippet lists the Python packages and their exact versions required to run the project. This list is typically used with package managers like pip to ensure all necessary libraries are installed correctly. ```requirements.txt cryptography==3.4.6 Flask==2.1.2 msal==1.9.0 requests==2.25.1 ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.