Installing Datasist

Datasist is available as a Python package for Linux, MacOS and Windows, and can be installed like any other Python package. You can visit our GitHub repository or get the latest version from PyPI

Install in existing environment

If you have an existing Python environment activated, you can install datasist with the command:

$ pip install datasist

Install in a new virtual environment

To install datasist in a virtual environment, you can use the Anaconda package.

You must have Miniconda or Anaconda Distribution installed.

Confirm you have Anaconda installed:

$ conda --version

Create new virtual environment and install Python 3.5 and above:

$ conda create -n yourenvname python=3.7 

Activate your environment:

$ source activate yourenvname

Install datasist and other packages you need for your project

$ pip install datasist

Test your installation:

$ python
Python 3.7.5 (default, Oct 25 2019, 15:51:11) 
[GCC 7.3.0] :: Anaconda, Inc. on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import datasist as ds
>>> 

Upgrading Datasist

If you have installed Datasist previously, you can upgrade to the latest version with

pip install --upgrade datasist

Last updated