前提・実現したいこと
ツイッターをスクレイピングする実行ファイルをPythonで作って、クラウドサーバ上で動かしたいのが目的です。
pythonでtwintを使ったスクレイピングプログラムを作成しました。
ターミナル上で実行すればなく動くんですが、pyinstallerで実行ファイル化して動かすとエラーが出ます。
twintを使わないスクリプト内容にすれば、問題なく動作しました。
発生している問題・エラーメッセージ
Traceback (most recent call last): File "pandas/__init__.py", line 29, in <module> File "PyInstaller/loader/pyimod03_importers.py", line 540, in exec_module File "pandas/_libs/__init__.py", line 13, in <module> File "pandas/_libs/interval.pyx", line 1, in init pandas._libs.interval File "pandas/_libs/hashtable.pyx", line 1, in init pandas._libs.hashtable File "pandas/_libs/missing.pyx", line 1, in init pandas._libs.missing File "PyInstaller/loader/pyimod03_importers.py", line 540, in exec_module File "pandas/_libs/tslibs/__init__.py", line 30, in <module> File "pandas/_libs/tslibs/conversion.pyx", line 1, in init pandas._libs.tslibs.conversion ModuleNotFoundError: No module named 'pandas._libs.tslibs.base' The above exception was the direct cause of the following exception: Traceback (most recent call last): File "sample.py", line 2, in <module> File "PyInstaller/loader/pyimod03_importers.py", line 540, in exec_module File "twint/__init__.py", line 14, in <module> File "PyInstaller/loader/pyimod03_importers.py", line 540, in exec_module File "twint/run.py", line 4, in <module> File "PyInstaller/loader/pyimod03_importers.py", line 540, in exec_module File "twint/get.py", line 16, in <module> File "PyInstaller/loader/pyimod03_importers.py", line 540, in exec_module File "twint/output.py", line 6, in <module> File "PyInstaller/loader/pyimod03_importers.py", line 540, in exec_module File "twint/storage/panda.py", line 1, in <module> File "PyInstaller/loader/pyimod03_importers.py", line 540, in exec_module File "pandas/__init__.py", line 33, in <module> ImportError: C extension: No module named 'pandas._libs.tslibs.base' not built. If you want to import pandas from the source directory, you may need to run 'python setup.py build_ext --force' to build the C extensions first. [41792] Failed to execute script sample Saving session... ...copying shared history... ...saving history...truncating history files... ...completed.``` ### 該当のソースコード ```ここに言語名を入力 from datetime import datetime import twint dt = datetime.now() strdate = "{0:%Y-%m-%d %H:%M:%S}".format(dt) print(strdate) c = twint.Config() c.Username = '[ユーザ名]' twint.run.Search(c)
試したこと
iCloud上でPython3.9の開発環境構築
xcodeでtwintを使ったスクリプト作成(ファイル名:sample.py)
pyinstallerでsample.pyを実行ファイル化
実行してエラー(dist/sample)
補足情報(FW/ツールのバージョンなど)
macOS BigSur11.3.1
Python3.9
試したこと
エラーメッセージの中に
If you want to import pandas from the source directory, you may need to run 'python setup.py build_ext --force'
と記載があったのでsetup.pyがあるディレクトリを探したのですが見つからず
おそらくpandasのsourceディレクトリの場所をよく分かっていません。
それらしいディレクトリはあるものの、setup.pyが見当たらない状況です。
回答1件
あなたの回答
tips
プレビュー