In this python tutorial, we will go over how to get started with the Dash package (framework) to build interactive dashboards.
Code files on GitHub: https://github.com/groundhogday321/pl...
Tutorials in this Dash series will include:
Hello World
Layout
Core Components/Widgets
Basic Callbacks
Interactive Dashboards
More
Additional Notes:
To open VS code from terminal using 'code .' - Open the Command Palette (Cmd+Shift+P) and type 'shell command' to find the Shell Command: Install 'code' command in PATH command. This may not always work. Additional options below.
In VS Code terminal you can activate an environment by typing 'conda activate environment_name' and another way to select the package environment is by typing 'python select interpreter' in command palette.
To run using Terminal/Command Prompt with Anaconda Package Environment, type 'conda activate environment_name', change directory if needed (example - cd Desktop), then to run type 'python file_name.py'.
Also, you may be able to run the app by going to the main menu bar and click Run, Run Without Debugging or by just simply clicking run code (top right). Again make sure you have activated the correct package environment and that the directory is pointing to the code files you are running (check in terminal).