2
I would like to know how to install the Pandas library in Manjaro, in Python version 3.4.3 -
2
I would like to know how to install the Pandas library in Manjaro, in Python version 3.4.3 -
3
I used the command:
sudo pacman -S python-pandas
And it worked :)
0
Hello,
If you already have python and Pip installed, do the following:
python -m pip install pandas
Another way is by using the Pip command directly:
pip install pandas
The two forms should work similarly, since the symbolic link of python and Pip points to the version of python 3 you mentioned that you use. This can be checked with the command:
python --version
If it is not version 3.x, then check the python3 command. Using Pip can then be done so:
python3 -m pip install pandas
or
pip3 install pandas
I hope it helped.
0
In general, the command pip3 install pandas
should work if you have the pip3
installed. To check you can also use the command which pip3
that 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
.
0
Every time I use pip3 install pandas
should give permission, that is, always use as: sudo pip3 install pandas
Browser other questions tagged pandas
You are not signed in. Login or sign up in order to post.
Could you provide more information? Which operating system?
– Filipe Oliveira
I use the Linux operating system - Manjaro. And the version I use of Python is 3.4.3
– user20273