Skip to content

Commit

Permalink
Pycall instructs (#550)
Browse files Browse the repository at this point in the history
* move SymPyPyCall -> SymPy; breaking change

* Bool3, bump

* readme

* default.profraw
  • Loading branch information
jverzani committed Jun 15, 2024
1 parent d67c523 commit 4ab8461
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ docs/build
docs/site
Manifest.toml
appveyor.yml
.travis.yml
.travis.yml
default.profraw
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,29 @@ To use this package, both Python and its SymPy library must be
installed on your system. If `PyCall` is installed using `Conda`
(which is the default if no system `python` is found), then the
underlying SymPy library will be installed via `Conda` when the
package is first loaded. Otherwise, installing both Python and the
package is first loaded.

If there are issues, you might try installing `PyCall` first, along the lines of :

```
julia> using Pkg
julia> ENV["PYTHON"]=""
julia> Pkg.build("PyCall")
julia> Pkg.add("SymPy")
julia> using SymPy
```


Otherwise, installing both Python and the
SymPy library can be done by other means.
In this case, the `Anaconda` distribution is suggested, as it provides a single
installation of Python that includes SymPy and many other
scientific libraries that can be profitably accessed within `Julia`
via `PyCall`. (Otherwise, install Python then download the SymPy
library from https://github.com/sympy/sympy/releases and install.)



To upgrade the underlying `sympy` library, which has new releases at a
rate similar to `Julia`, when installed with `Conda`, the following commands
are available:
Expand Down

0 comments on commit 4ab8461

Please sign in to comment.