Installing MindPandas
Confirming System Environment Information
The following table lists the environment required for installing, compiling and running MindPandas:
software |
version |
---|---|
Linux-x86_64 |
Ubuntu >=18.04 |
Python |
3.8 |
glibc |
>=2.25 |
Make sure libxml2-utils is installed in your environment.
Please refer to requirements for other third party dependencies.
Version Dependency
Installing from pip command
If you use the pip, please download the whl package from MindPandas page and install it.
Installing whl package will download MindPandas dependencies automatically (detail of dependencies is shown in requirements.txt) in the networked state, and other dependencies should be installed manually.
Installing from source code
Download source code, then enter the mindpandas
directory to run build.sh script.
git clone https://gitee.com/mindspore/mindpandas.git
cd mindpandas
bash build.sh
The package is in output directory after compiled and you can install with pip.
pip install output/mindpandas-0.1.0-cp38-cp38-linux_x86_64.whl
Verification
Execute the following command in shell. If no No module named 'mindpandas'
error is reported, the installation is successful.
python -c "import mindpandas"