aboutsummaryrefslogtreecommitdiff
path: root/Python
diff options
context:
space:
mode:
authorGravatar Michael Kieburtz <michaelkieburtz@gmail.com> 2021-08-20 14:00:43 -0700
committerGravatar GitHub <noreply@github.com> 2021-08-20 21:00:43 +0000
commit04b7c5c6e506e075be54acc67076310aab8a106f (patch)
tree75ca4d8b255ff0c535c5b16aee1d7ca3ef4cd2bb /Python
parentf3c7e95be8aba9409947f39a379dbea4279ecaea (diff)
downloadWarpX-04b7c5c6e506e075be54acc67076310aab8a106f.tar.gz
WarpX-04b7c5c6e506e075be54acc67076310aab8a106f.tar.zst
WarpX-04b7c5c6e506e075be54acc67076310aab8a106f.zip
Updated the installation instructions (#2218)
Diffstat (limited to 'Python')
-rwxr-xr-xPython/pywarpx/_libwarpx.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pywarpx/_libwarpx.py b/Python/pywarpx/_libwarpx.py
index cd6875c1c..110de5190 100755
--- a/Python/pywarpx/_libwarpx.py
+++ b/Python/pywarpx/_libwarpx.py
@@ -77,7 +77,7 @@ try:
except OSError as e:
value = e.args[0]
if f'{libname}: cannot open shared object file: No such file or directory' in value:
- raise Exception('"%s" was not installed. It can be installed by running "make" in the Python directory of WarpX' % libname) from e
+ raise Exception(f'"{libname}" was not installed. Installation instructions can be found here https://warpx.readthedocs.io/en/latest/install/users.html') from e
else:
print("Failed to load the libwarpx shared object library")
raise