Add missing send timeout man page
[ric-plt/lib/rmr.git] / src / bindings / rmr-python / README.md
index b97af14..814c27e 100644 (file)
@@ -39,15 +39,13 @@ There are some higher order send functions, for example functions that send and
 If rmr is *not* compiled on your system, see the below instructions for downloading and compiling rmr. This library expects that the rmr .so files are compiled and available.
 
 ## From PyPi
-(TODO: This is going to have to change to some LF PYPI or some public PYPI, soon.)
 
-    pip install --trusted-host nexus01.research.att.com --extra-index-url https://nexus01.research.att.com:8443/repository/solutioning01-mte2-pypi/simple rmr==version.you.want
+    pip install rmr==X.Y.Z
 
 ## From Source
-(TODO: this has to be moved to LF)
 
-    git clone git@gitlab.research.att.com:tommy/rmr-python.git
-    cd rmr-python
+    git clone "https://gerrit.o-ran-sc.org/r/ric-plt/lib/rmr"
+    cd rmr/src/bindings/rmr-python/
     pip install .
 
 # Examples
@@ -55,8 +53,8 @@ If rmr is *not* compiled on your system, see the below instructions for download
 See the `examples` directory.
 
 # Compiling rmr (if not already done on your system)
-(Note, you may or may not need sudo in your final command, depending on permissions to `/usr/local`. I need it)
+(Note, you may or may not need sudo in your final command, depending on permissions to `/usr/local`. The pack externals option to CMake is needed only if the NNG libary is not already installed on the system, and you do not wish to manually install it.)
 
     git clone https://gerrit.oran-osc.org/r/ric-plt/lib/rmr
     cd rmr
-    mkdir .build; cd .build; cmake ..; sudo make install
+    mkdir .build; cd .build; cmake .. -DPACK_EXTERNALS=1; sudo make install