Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update info on using standard python interpreter #628

Merged
merged 1 commit into from
Mar 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -248,9 +248,11 @@ to this:
import cunumeric as np
```
After this, you can use the `legate` driver script in the `bin` directory of
your installation to run any Python program. **Note that the default python
interpreter (`python`) will not work with programs that use Legate libraries, you
need to use this custom driver script.**
your installation to run any Python program.

You can also use the standard Python interpreter, but in that case configuration
options can only be passed through the environment (see below), and some options
are not available (check the output of legate --help for more details).

For example, to run your script in the default configuration (4 CPUs cores and
4 GB of memory) just run:
Expand Down