From b3fc98c83688dc5afdde6a614c78a9b1d7391b1e Mon Sep 17 00:00:00 2001 From: chmielar <90806210+chmielar@users.noreply.github.com> Date: Wed, 9 Feb 2022 11:52:38 +0000 Subject: [PATCH] This allows running HIV_model.py from within conda environment used by the host script (Jupyter notebook) --- HIV_model.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/HIV_model.py b/HIV_model.py index b4b59e3..57ffebd 100755 --- a/HIV_model.py +++ b/HIV_model.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 from scipy.integrate import ode import numpy as np @@ -64,4 +64,4 @@ def jac(x, t, i): header = 'T_cell_count' np.savetxt('output.csv', ans.reshape([-1,1]), delimiter=",", comments='', - header=header) \ No newline at end of file + header=header)