I would like to know how to install the Pandas library in Manjaro, in Python version 3.4.3 -
I would like to know how to install the Pandas library in Manjaro, in Python version 3.4.3 -
I used the command:
sudo pacman -S python-pandas
And it worked:)
In general, the pip3 install pandas
command should work if you have pip3
installed. To check you can also use the command which pip3
which should return the location where it is installed.
If you use the Anaconda package manager, you can also install Pandas with the command conda install pandas
.
Whenever you use pip3 install pandas
you should give permission, that is, always use as: sudo pip3 install pandas