CentOS Stream 9にPandasをインストールする

環境
# cat /etc/redhat-release
CentOS Stream release 9

pipバージョンの確認

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
# pip --version
pip 22.0.4 from /usr/local/lib/python3.9/site-packages/pip (python 3.9)
# pip --version pip 22.0.4 from /usr/local/lib/python3.9/site-packages/pip (python 3.9)
# pip --version
pip 22.0.4 from /usr/local/lib/python3.9/site-packages/pip (python 3.9)

pythonバージョンの確認

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
# python -V
Python 3.9.10
# python -V Python 3.9.10
# python -V
Python 3.9.10

pandasのインストール
1.pipコマンドでpandasをインストールします

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
# pip install pandas
# pip install pandas
# pip install pandas

2.pandasバージョンの確認

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
[root@localhost ~]# python3
Python 3.9.10 (main, Feb 9 2022, 00:00:00)
[GCC 11.2.1 20220127 (Red Hat 11.2.1-9)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import pandas
>>> pandas.__version__
'1.4.1'
[root@localhost ~]# python3 Python 3.9.10 (main, Feb 9 2022, 00:00:00) [GCC 11.2.1 20220127 (Red Hat 11.2.1-9)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import pandas >>> pandas.__version__ '1.4.1'
[root@localhost ~]# python3
Python 3.9.10 (main, Feb 9 2022, 00:00:00)
[GCC 11.2.1 20220127 (Red Hat 11.2.1-9)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import pandas
>>> pandas.__version__
'1.4.1'

使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
import pandas as pd
mydataset = {
'sites': ["Google", "Facebook", "Twitter"],
'number': [1, 2, 3]
}
myvar = pd.DataFrame(mydataset)
print(myvar)
import pandas as pd mydataset = { 'sites': ["Google", "Facebook", "Twitter"], 'number': [1, 2, 3] } myvar = pd.DataFrame(mydataset) print(myvar)
import pandas as pd

mydataset = {
  'sites': ["Google", "Facebook", "Twitter"],
  'number': [1, 2, 3]
}

myvar = pd.DataFrame(mydataset)

print(myvar)

実行結果

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
# python test01.py
sites number
0 Google 1
1 Facebook 2
2 Twitter 3
# python test01.py sites number 0 Google 1 1 Facebook 2 2 Twitter 3
# python test01.py
      sites  number
0    Google       1
1  Facebook       2
2   Twitter       3

 

CentOS Stream 9

Posted by arkgame