$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

How to Install Python NumPy in Solus Gnu/Linux

September 23, 2019 | By the+gnu+linux+evangelist.

Installing

  1. 2. Installing Anaconda Python

    How to Install Anaconda Python in GNU/Linux

    Here Python NumPy Setup Guide
    Link to Guide on Installing Anaconda Python and Making a Virtual Environment

    Because Anaconda is the Best Choice for Data Science Computation!
    In any case, instead to Install simply the System Python Package run:

    Copy
    pip install numpy
  2. 3. Testing Python NumPy

    So now just Test the Python NumPy
    In case of Anaconda, the way is of Creating a separate Virtual Environment to house the components.
    With conda Package Manager like:

    Copy
    conda create -n numpy

    And then to Activate it:

    Copy
    conda activate numpy

    Now to Show the NumPy Info Notice:

    Copy
    pip show numpy

    Or else try to Import the Module in Python CLI:

    Copy
    python
    Copy
    import numpy

Contents