初学者:Python无法找到“ pyodbc”软件包?

时间:2020-01-22 20:07:50

标签: python python-3.x pip

我对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.

更新: 我在查看站点包下的文件夹时,发现那里没有'pyodbc'文件夹,但是有'pyodbc-4.0.28.dist-info'文件夹。 enter image description here

3 个答案:

答案 0 :(得分:0)

模块未正确安装。

尝试重新安装它:

pip uninstall pyodbc
pip install pyodbc

如果这不起作用,请尝试使用pip3:

pip uninstall pyodbc
pip3 install pyodbc

答案 1 :(得分:0)

在安装“ pyodbc”时,您是否有一个活动的Python环境。如果是这样,您将需要在运行脚本之前激活环境,因为您将无法访问该环境之外的软件包。

如果不是,则可能只需要卸载并重新安装。

SOCIAL_AUTH_LOGIN_REDIRECT_URL

答案 2 :(得分:0)

我在Github上发现一些东西,pyodbc版本4.0.28中存在一个错误,因此我降级为4.0.27,这解决了我的问题。有关更多信息,请click here