File tree 1 file changed +17
-1
lines changed
1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -9,8 +9,24 @@ For now, you can pip install this package directly from github as follows:
9
9
pip install git+https://github.com/cjdoris/PythonCall.jl
10
10
```
11
11
12
+ ### Installation in editable mode
13
+
12
14
Developers may wish to clone the repo directly and pip install the module in editable mode.
13
- This guarantees you are using the latest version of PythonCall in conjunction with juliacall.
15
+ This guarantees you are using the latest version of PythonCall in conjunction with juliacall. Please proceed with either option below.
16
+
17
+ 1 . Intall directly from GitHub. You may want to change the branch after ` @ ` to the one you like.
18
+
19
+ ``` bash
20
+ pip install -e git+https://github.com/cjdoris/PythonCall.jl@master#egg=juliacall
21
+ ```
22
+
23
+ The source code will be downloaded into a * src* subfolder of the current directory.
24
+
25
+ 2. Alternatively, first clone this repository and then install from the local source. Please replace the directory below with your actual one.
26
+
27
+ ` ` ` bash
28
+ pip install --user -e git+file:///home/shuhua/github/PythonCall.jl@master#egg=juliacall
29
+ ` ` `
14
30
15
31
Note also that regardless of installing ` juliacall` , a module called ` juliacall` will
16
32
always be loaded into the interpreter by ` PythonCall` . This means that other Python
You can’t perform that action at this time.
0 commit comments