@@ -44,11 +44,12 @@ From the Windows command line (or the special Anaconda or Python command if pip
4444
4545.. code-block :: bash
4646
47- pip install gh-python-remote
47+ pip install gh-python-remote --upgrade --process-dependency-links --no-binary=:all:
4848 python -m ghpythonremote._configure_ironpython_installation
4949
5050 The first line installs gh-python-remote in the current Python interpreter. The second tries to find your Rhinoceros
51- IronPython installation, and install gh-python-remote there.
51+ IronPython installation, and install gh-python-remote there. The extra options are necessary to be able to get the
52+ pre-release version of rpyc.
5253
5354If you do not use the standard Rhinoceros IronPython installation
5455(``%APPDATA%\McNeel\Rhinoceros\5.0\Plug-ins\IronPython (814d908a-e25c-493d-97e9-ee3861957f49)\settings ``), you can
@@ -93,7 +94,7 @@ interpreter, then create the array from this remote object:
9394
9495 .. code-block :: python
9596
96- import scriptcontext as rc
97+ import scriptcontext as sc
9798 import rpyc
9899 np = sc.sticky[' numpy' ]
99100 rpy = sc.sticky[' rpy' ]
@@ -106,7 +107,7 @@ the local interpreter first:
106107
107108 .. code-block :: python
108109
109- import scriptcontext as rc
110+ import scriptcontext as sc
110111 import rpyc
111112 from ghpythonlib.treehelpers import list_to_tree # Rhino 6 only!
112113 np = sc.sticky[' numpy' ]
@@ -166,6 +167,8 @@ Quick-ref:
166167 Console output with DEBUG information.
167168 :linked_modules (string list):
168169 list of imported module names.
170+ :rpy (rpyc connection object):
171+ The object representing the remote Python interpreter.
169172 :import_statements (string):
170173 what to use in the GHPython component to actually use the imported modules.
171174
0 commit comments