Python’s “Plotly Dash” library allows you to write beautiful dashboard applications in a few lines of code to visualize your data and make it open to the world.
Problem
Problem Formulation: Given a PyCharm project. How to install the Plotly Dash library in your project within a virtual environment or globally?
Solution
Here’s a solution that always works:
- Open
File > Settings > Project
from the PyCharm menu. - Select your current project.
- Click the
Python Interpreter
tab within your project tab. - Click the small
+
symbol to add a new library to the project. - Now type in the library to be installed, in your example
"dash"
without quotes, and clickInstall Package
. - Wait for the installation to terminate and close all popup windows.
π Further Learning: For a complete guide on how to build your beautiful dashboard app in pure Python, check out our best-selling book Python Dash with San Francisco Based publisher NoStarch.
Here’s the installation process as a short animated video—it works analogously for the Plotly Dash library, just type in “dash” in the search field instead:
Make sure to select only “dash” because there are many other packages that are not required but also contain the same term (false positives):
Alternatively, you can run the pip install dash
command in your PyCharm “Terminal” view:
$ pip install dash
The following figure shows how to use pip to install the Dash package:
You can check your installation using the following two lines of Python code that print out the version of the package:
import dash print(dash.__version__)
Python Dash Book
If you’re interested in learning more about how to create beautiful dashboard applications in Python, check out our new book Python Dash.
Youβve seen dashboards before; think election result visualizations you can update in real-time, or population maps you can filter by demographic.
With the Python Dash library, youβll create analytic dashboards that present data in effective, usable, elegant ways in just a few lines of code.
Get the book on NoStarch or Amazon!
Feel free to check out the following free email academy with Python cheat sheets to boost your coding skills!
To become a PyCharm master, check out our full course on the Finxter Computer Science Academy available for free for all Finxter Premium Members: