VScodeで下記コードを実行(vccodeの実行ボタンから実行)を行うと
下記のようなメッセージ(エラー)が表示されてしまいますが、
これは、何を意味しているのでしょうか?
from time import sleep
import pandas as pdもインポートできていないようです。
対応方法等、ご教示願います。
python
1from selenium import webdriver 2from time import sleep 3import pandas as pd 4 5user = "test_user" 6PASS = "test_pw" 7 8browser = webdriver.Chrome('chromedriver.exe') 9 10url_login = "https://xxxxx.com/membership-login/" 11browser.get(url_login) 12time.sleep(3) 13print("ログインページにアクセス")
エラー内容
PS C:\work\09-Script\MyPython> & C:/Users/yamada/AppData/Local/Programs/Python/Python39/python.exe c:/work/09-Script/MyPython/web-scraping.py ** On entry to DGEBAL parameter number 3 had an illegal value ** On entry to DGEHRD parameter number 2 had an illegal value ** On entry to DORGHR DORGQR parameter number 2 had an illegal value ** On entry to DHSEQR parameter number 4 had an illegal value Traceback (most recent call last): File "c:\work\09-Script\MyPython\web-scraping.py", line 9, in <module> import pandas as pd File "C:\Users\yamada\AppData\Local\Programs\Python\Python39\lib\site-packages\pandas\__init__.py", line 11, in <module> __import__(dependency) File "C:\Users\yamada\AppData\Local\Programs\Python\Python39\lib\site-packages\numpy\__init__.py", line 305, in <module> _win_os_check() File "C:\Users\yamada\AppData\Local\Programs\Python\Python39\lib\site-packages\numpy\__init__.py", line 302, in _win_os_check raise RuntimeError(msg.format(__file__)) from None RuntimeError: The current Numpy installation ('C:\Users\yamada\AppData\Local\Programs\Python\Python39\lib\site-packages\numpy\__init__.py') fails to pass a sanity check due to a bug in the windows runtime. See this issue for more information: https://tinyurl.com/y3dm3h86 PS C:\work\09-Script\MyPython> & C:/Users/yamada/AppData/Local/Programs/Python/Python39/python.exe c:/work/09-Script/MyPython/web-scraping.py ** On entry to DGEBAL parameter number 3 had an illegal value ** On entry to DGEHRD parameter number 2 had an illegal value ** On entry to DORGHR DORGQR parameter number 2 had an illegal value ** On entry to DHSEQR parameter number 4 had an illegal value Traceback (most recent call last): File "c:\work\09-Script\MyPython\web-scraping.py", line 9, in <module> import pandas as pd File "C:\Users\yamada\AppData\Local\Programs\Python\Python39\lib\site-packages\pandas\__init__.py", line 11, in <module> __import__(dependency) File "C:\Users\yamada\AppData\Local\Programs\Python\Python39\lib\site-packages\numpy\__init__.py", line 305, in <module> _win_os_check() File "C:\Users\yamada\AppData\Local\Programs\Python\Python39\lib\site-packages\numpy\__init__.py", line 302, in _win_os_check raise RuntimeError(msg.format(__file__)) from None RuntimeError: The current Numpy installation ('C:\Users\yamada\AppData\Local\Programs\Python\Python39\lib\site-packages\numpy\__init__.py') fails to pass a sanity check due to a bug in the windows runtime. See this issue for more information: https://tinyurl.com/y3dm3h86 PS C:\work\09-Script\MyPython>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。