Skip to content

Commit

Permalink
trying again
Browse files Browse the repository at this point in the history
  • Loading branch information
bsrunnels committed Nov 22, 2023
1 parent 07ea4e4 commit 5745f15
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions bleMD/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,8 +255,13 @@ def draw(self, context):


def installOvito():
import pip
pip.main(['install', 'ovito'])
import sys
import subprocess
exe = sys.executable
subprocess.check_call([exe,'-m','pip','install','ovito'])

#import pip
#pip.main(['install', 'ovito'])
import ovito

print('FINISHED')
Expand Down

0 comments on commit 5745f15

Please sign in to comment.