Skip to content

Commit

Permalink
Building and setup
Browse files Browse the repository at this point in the history
  • Loading branch information
bieniekmateusz committed Aug 19, 2023
1 parent d553355 commit ae4d67c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ties/ligandmap.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
import matplotlib.pyplot as plt
import numpy
import networkx
import dimod
import tabulate

try:
import dimod
except ModuleNotFoundError:
print("Could not import dimod. Please install it to make ligandmap work.")

dwave = True
try:
import dwave_networkx.algorithms
Expand Down

0 comments on commit ae4d67c

Please sign in to comment.