Skip to content

Commit

Permalink
more debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Lilith Hafner authored and Lilith Hafner committed Oct 3, 2023
1 parent 7090062 commit 4f2ca9b
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,25 @@
using PyCall

py"""
import julia
print("AAAAAAAAAA")
import sys
print(sys.executable)
try:
import julia
print("BBBBBBBBBB")
except:
print("CCCCCCCCCC")
import sys
subprocess.run([sys.executable, '-m', 'pip', 'install', '--user', 'julia'])
try:
import julia
print("DDDDDDDDDD")
except:
print("EEEEEEEEEE")
print("FFFFFFFFFF")
"""

# using Pkg
Expand Down

0 comments on commit 4f2ca9b

Please sign in to comment.