簡體   English   中英

初學者:Python 找不到 'pyodbc' 包?

[英]Beginner: Python can't find 'pyodbc' package?

我對 Python 語言很陌生,有一個小程序。 它一直在工作,但有些變化,現在我無法讓它運行。 找到'pyodbc'有問題。 我安裝了“pyodbc”包,所以我不明白為什么會出現錯誤。 我正在使用 Python 3.7.6。 感謝您的幫助!

pip 安裝 pyodbc

WARNING: pip is being invoked by an old script wrapper. This will fail in a future version of pip.
Please see https://github.com/pypa/pip/issues/5599 for advice on fixing the underlying issue.
To avoid this problem you can invoke Python with '-m pip' instead of running pip directly.
Requirement already satisfied: pyodbc in c:\users\c113850\appdata\roaming\python\python37\site-packages (4.0.28)

代碼:

import requests
import pyodbc
from bs4 import BeautifulSoup
from datetime import datetime
import pytz 
import time
import azure.functions

page = requests.get("https://samplepage.html")

if page.status_code == 200:
    print(page.status_code)
    #print(page.content)

    soup = BeautifulSoup(page.content, 'html.parser')
    print(soup.title)
    rows = soup.find_all('tr')
    # for row in rows:          # Print all occurrences
    #    print(row.get_text())
    print(rows[0])
    print(rows[7])
    pjmtime = rows[0].td.get_text()
    print("PJM = ",pjmtime)

    #dt_string = "Tue Jan 21 18:00:00 EST 2020"
    dt_object = datetime.strptime(pjmtime, "%a %b %d %H:%M:%S EST %Y")
    print("Timestamp =", dt_object)

    eastern=pytz.timezone('US/Eastern')
    date_eastern=eastern.localize(dt_object,is_dst=None)
    date_utc=date_eastern.astimezone(pytz.utc)
    print("UTC =", date_utc)

    row = soup.find(text='PRICE').parent.parent
    name = row.select('td')[0].get_text()
    typed = row.select('td')[1].get_text()
    weighted = row.select('td')[2].get_text()
    hourly = row.select('td')[3].get_text()

    server = 'db.database.windows.net'
    database = '...'
    username = '...'
    password = '...'
    driver = '{ODBC Driver 17 for SQL Server}'

    cnxn = pyodbc.connect('DRIVER='+driver+';SERVER='+server+';PORT=1433;DATABASE='+database+';UID='+username+';PWD='+ password)
    cursor = cnxn.cursor()
    print("insert into [PJMLocationalMarginalPrice] ([Name],[Type],[WeightedAverage],[HourlyIntegrated],[TimeStamp]) values(?,?,?,?,?)",
               (name,typed,weighted,hourly,date_utc))
    cursor.execute("insert into [PJMLocationalMarginalPrice] ([Name],[Type],[WeightedAverage],[HourlyIntegrated],[TimeStamp]) values (?,?,?,?,?)",
               (name,typed,weighted,hourly,date_utc))
    cnxn.commit()
else:
    print("Error: page not open")

錯誤:

Traceback (most recent call last):
  File "c:/Users/C113850/PycharmProjects/Scraping101/Scraping.py", line 2, in <module>
    import pyodbc
ImportError: DLL load failed: The specified module could not be found.

更新:我正在查看 site-packages 下的文件夾,注意到“pyodbc”文件夾不在那里,但“pyodbc-4.0.28.dist-info”文件夾在那里。 在此處輸入圖片說明

模塊安裝不正確。

嘗試重新安裝它:

pip uninstall pyodbc
pip install pyodbc

如果這不起作用,請嘗試使用 pip3:

pip uninstall pyodbc
pip3 install pyodbc

安裝“pyodbc”時是否有活動的 Python 環境。 如果是這樣,您將需要在運行腳本之前激活環境,因為您無法訪問該環境之外的包。

如果沒有,您可能只需要卸載並重新安裝。

pip uninstall pyodbc
pip install pyodbc

我在 Github 上發現 pyodbc 版本 4.0.28 中存在一個錯誤,因此我降級到 4.0.27 並解決了我的問題。 如需更多信息,請單擊此處

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM