File tree Expand file tree Collapse file tree 2 files changed +18
-2
lines changed
Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -5,4 +5,5 @@ docs/build
55docs /site
66Manifest.toml
77appveyor.yml
8- .travis.yml
8+ .travis.yml
9+ default.profraw
Original file line number Diff line number Diff line change @@ -18,14 +18,29 @@ To use this package, both Python and its SymPy library must be
1818installed on your system. If ` PyCall ` is installed using ` Conda `
1919(which is the default if no system ` python ` is found), then the
2020underlying 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
2235SymPy library can be done by other means.
2336In this case, the ` Anaconda ` distribution is suggested, as it provides a single
2437installation of Python that includes SymPy and many other
2538scientific libraries that can be profitably accessed within ` Julia `
2639via ` PyCall ` . (Otherwise, install Python then download the SymPy
2740library from https://github.com/sympy/sympy/releases and install.)
2841
42+
43+
2944To upgrade the underlying ` sympy ` library, which has new releases at a
3045rate similar to ` Julia ` , when installed with ` Conda ` , the following commands
3146are available:
You can’t perform that action at this time.
0 commit comments