Skip to content

Commit

Permalink
Deploying to gh-pages from @ bd0d4e6 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
cpalfonso committed Nov 8, 2023
1 parent 501e3fe commit 4cd6655
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,15 @@ <h2 id="notebooks-examples">Notebooks / Examples</h2>

__version__ = &#34;1.1&#34;

import plate_model_manager
try:
import plate_model_manager
except ImportError:
print(&#34;The plate_model_manager is not installed, installing it now!&#34;)
import subprocess
import sys

subprocess.call([sys.executable, &#34;-m&#34;, &#34;pip&#34;, &#34;install&#34;, &#34;plate-model-manager&#34;])
import plate_model_manager

from . import (
data,
Expand Down

0 comments on commit 4cd6655

Please sign in to comment.