-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Conda.activate seem to interfere with python
- Loading branch information
1 parent
02e908d
commit 975f6be
Showing
3 changed files
with
9 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name = "JolinPluto" | ||
uuid = "5b0b4ef8-f4e6-4363-b674-3f031f7b9530" | ||
authors = ["Stephan Sahm <[email protected]> and contributors"] | ||
version = "0.1.72" | ||
version = "0.1.73" | ||
|
||
[deps] | ||
AbstractPlutoDingetjes = "6e696c72-6542-2067-7265-42206c756150" | ||
|
@@ -28,7 +28,7 @@ CondaPkg = "992eb4ea-22a4-4c89-a5bb-47a3300528ab" | |
AWSExt = "AWS" | ||
PlotsExt = "Plots" | ||
PythonCallExt = "PythonCall" | ||
RCallExt = "RCall" | ||
RCallExt = ["RCall", "CondaPkg"] | ||
CondaPkgExt = "CondaPkg" | ||
|
||
[compat] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
module CondaPkgExt | ||
import CondaPkg | ||
function __init__() | ||
# this is crucial so that the path is set correctly | ||
# while PythonCall does this by itself, RCall needs this manual help, | ||
# which effects both plain Julia with RCall as well as PlutoR | ||
CondaPkg.activate!(ENV) | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters