CentOS Stream 9にPandasをインストールする
環境
# cat /etc/redhat-release
CentOS Stream release 9
pipバージョンの確認
# 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バージョンの確認
# python -V
Python 3.9.10
# python -V
Python 3.9.10
# python -V Python 3.9.10
pandasのインストール
1.pipコマンドでpandasをインストールします
# pip install pandas
# pip install pandas
# pip install pandas
2.pandasバージョンの確認
[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'
使用例
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)
実行結果
# 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