Skip to content

Commit 4ab8461

Browse files
authored
Pycall instructs (#550)
* move SymPyPyCall -> SymPy; breaking change * Bool3, bump * readme * default.profraw
1 parent d67c523 commit 4ab8461

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ docs/build
55
docs/site
66
Manifest.toml
77
appveyor.yml
8-
.travis.yml
8+
.travis.yml
9+
default.profraw

README.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,29 @@ To use this package, both Python and its SymPy library must be
1818
installed on your system. If `PyCall` is installed using `Conda`
1919
(which is the default if no system `python` is found), then the
2020
underlying SymPy library will be installed via `Conda` when the
21-
package is first loaded. Otherwise, installing both Python and the
21+
package is first loaded.
22+
23+
If there are issues, you might try installing `PyCall` first, along the lines of :
24+
25+
```
26+
julia> using Pkg
27+
julia> ENV["PYTHON"]=""
28+
julia> Pkg.build("PyCall")
29+
julia> Pkg.add("SymPy")
30+
julia> using SymPy
31+
```
32+
33+
34+
Otherwise, installing both Python and the
2235
SymPy library can be done by other means.
2336
In this case, the `Anaconda` distribution is suggested, as it provides a single
2437
installation of Python that includes SymPy and many other
2538
scientific libraries that can be profitably accessed within `Julia`
2639
via `PyCall`. (Otherwise, install Python then download the SymPy
2740
library from https://github.com/sympy/sympy/releases and install.)
2841

42+
43+
2944
To upgrade the underlying `sympy` library, which has new releases at a
3045
rate similar to `Julia`, when installed with `Conda`, the following commands
3146
are available:

0 commit comments

Comments
 (0)