Modular Media Server/User Guide/Installing and Running MMS: Difference between revisions

 
mNo edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
<noinclude>
<noinclude>
{{Modular Media Server/Top Banner|previous=User Guide/Dependencies|next=User Guide|keywords=}}
{{Modular Media Server/Top Banner|previous=User Guide/Dependencies|next=User Guide|description=}}
</noinclude>
</noinclude>


Line 6: Line 6:


To install all Python dependencies run the following command inside the root directory of the project.
To install all Python dependencies run the following command inside the root directory of the project.
<pre>
<syntaxhighlight lang="bash">
pip3 install .
pip3 install .
</pre>  
</syntaxhighlight>


In order to check if its dependencies were installed successfully, run the following and check for similar output:
In order to check if its dependencies were installed successfully, run the following and check for similar output:


<pre>
<syntaxhighlight lang="bash">
pip3 show modular_media_server
pip3 show modular_media_server


Line 25: Line 25:
Requires: PyGObject
Requires: PyGObject
Required-by:
Required-by:
</pre>  
</syntaxhighlight>





Latest revision as of 17:11, 7 November 2024



Previous: User Guide/Dependencies Index Next: User Guide







Setting up Modular Media Server project

To install all Python dependencies run the following command inside the root directory of the project.

pip3 install .

In order to check if its dependencies were installed successfully, run the following and check for similar output:

pip3 show modular_media_server

Name: modular-media-server
Version: 0.0.1
Summary: Modular Media Server
Home-page: git@gitlab.com:RidgeRun/rnd/modular-media-server.git
Author: RidgeRun
Author-email: support@ridgerun.com
License: UNKNOWN
Location: /home/oporras/Documents/Projects/modular-media-server
Requires: PyGObject
Required-by:



Previous: User Guide/Dependencies Index Next: User Guide