Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add DLL Search Paths for Windows with Python 3.8+ #458

Closed
wants to merge 7 commits into from
Closed
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions pysrc/juliacall/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,18 @@ def backtrace(self):

def init():
import os
if os.environ.get("CONDA_PREFIX", "") != "": #Only when calling from PythonCall
## For Windows and Python 3.8+ we need to add dll search paths
import sys
import platform
if platform.system() == "Windows" and sys.hexversion >= 0x308000:
thealanjason marked this conversation as resolved.
Show resolved Hide resolved
conda_environment_path = os.environ["CONDA_PREFIX"]
dll_search_paths = [
os.path.join(conda_environment_path, "Library", "bin"),
]
for path in dll_search_paths:
if os.path.exists(path):
os.add_dll_directory(path)
thealanjason marked this conversation as resolved.
Show resolved Hide resolved
import ctypes as c
import sys
import subprocess
Expand Down
Loading