Skip to content

Commit

Permalink
Merge pull request #89 from biolab/fix-install-instructions
Browse files Browse the repository at this point in the history
Update Other platforms installation
  • Loading branch information
PrimozGodec authored Feb 2, 2024
2 parents 3ff8576 + 46b728e commit 9c78fb5
Showing 1 changed file with 20 additions and 9 deletions.
29 changes: 20 additions & 9 deletions pages/download/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -184,31 +184,40 @@ export default function Download() {
<h2>Other platforms</h2>
<h3>Anaconda</h3>
<p>
If you are using python provided by Anaconda distribution, you
are almost ready to go. Add conda-forge to the list of channels
Add conda-forge to the list of channels
you can install packages from (and make it default)
</p>
<pre>
<code>
conda config --add channels conda-forge conda config --set
channel_priority strict
conda config --add channels conda-forge<br />
conda config --set channel_priority strict
</code>
</pre>
<p>and run</p>
<pre>
<code>conda install orange3</code>
</pre>

<p>
A universal bundle with everything packed in and ready to use.
</p>

<h3>Pip</h3>
<p>
Orange can also be installed from the Python Package Index. You
Orange can also be installed from PyPI. You
may need additional system packages provided by your
distribution.
</p>

<p>
If your system does not already provide PyQt, install
it from PyPI
</p>

<pre>
<code>pip install PyQt5 PyQtWebEngine</code>
</pre>

<p>
Finally, install Orange
</p>

<pre>
<code>pip install orange3</code>
</pre>
Expand All @@ -228,6 +237,8 @@ export default function Download() {
</a>
</p>

<h3>Running Orange</h3>

<p>To run Orange Canvas run</p>
<pre>
<code>python -m Orange.canvas</code>
Expand Down

0 comments on commit 9c78fb5

Please sign in to comment.