【解決】Python 38 mssqlのインストール中にエラー
文書ディレクトリ 1. を押します. 2. whlダウンロードアドレス 3. インストール 1.
直接pipでインストールしたpyaudioは3.8をサポートしていないので、インストールやimport時にエラーが発生します.そのため、whlファイルのインストールを手動でダウンロードする必要があります.64ビットオペレーティングシステムの場合、Python 3.8は
C:\WINDOWS\system32>pip install pymssql Collecting pymssql Using cached pymssql-2.1.4.tar.gz (691 kB) ERROR: Command errored out with exit status 1: command: ‘c:\program files\python\38\python.exe’ -c ‘import sys, setuptools, tokenize; sys.argv[0] = ‘"’"‘D:\s\ut\pip-install-zqaumew5\pymssql\setup.py’"’"’; file=’"’"‘D:\s\ut\pip-install-zqaumew5\pymssql\setup.py’"’"’;f=getattr(tokenize, ‘"’"‘open’"’"’, open)(file);code=f.read().replace(’"’"’\r’"’"’, ‘"’"’’"’"’);f.close();exec(compile(code, file, ‘"’"‘exec’"’"’))’ egg_info --egg-base ‘D:\s\ut\pip-install-zqaumew5\pymssql\pip-egg-info’ cwd: D:\s\ut\pip-install-zqaumew5\pymssql Complete output (7 lines): c:\program files\python\38\lib\site-packages\setuptools\dist.py:45: DistDeprecationWarning: Do not call this function warnings.warn(“Do not call this function”, DistDeprecationWarning) Traceback (most recent call last): File “”, line 1, in File “D:\s\ut\pip-install-zqaumew5\pymssql\setup.py”, line 88, in from Cython.Distutils import build_ext as _build_ext ModuleNotFoundError: No module named ‘Cython’ ---------------------------------------- ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
2.whlダウンロードアドレス城通網盤 https://www.lfd.uci.edu/~gohlke/pythonlibs/#pymssql
3.インストール
参考:python 3.8と3.7 pyaudioのインストール
直接pipでインストールしたpyaudioは3.8をサポートしていないので、インストールやimport時にエラーが発生します.そのため、whlファイルのインストールを手動でダウンロードする必要があります.64ビットオペレーティングシステムの場合、Python 3.8は
pymssql-2.1.4-cp38-cp38-win_amd64.whl
をダウンロードします.筆者はインストール時に以下のエラーを提示します.C:\WINDOWS\system32>pip install pymssql Collecting pymssql Using cached pymssql-2.1.4.tar.gz (691 kB) ERROR: Command errored out with exit status 1: command: ‘c:\program files\python\38\python.exe’ -c ‘import sys, setuptools, tokenize; sys.argv[0] = ‘"’"‘D:\s\ut\pip-install-zqaumew5\pymssql\setup.py’"’"’; file=’"’"‘D:\s\ut\pip-install-zqaumew5\pymssql\setup.py’"’"’;f=getattr(tokenize, ‘"’"‘open’"’"’, open)(file);code=f.read().replace(’"’"’\r’"’"’, ‘"’"’’"’"’);f.close();exec(compile(code, file, ‘"’"‘exec’"’"’))’ egg_info --egg-base ‘D:\s\ut\pip-install-zqaumew5\pymssql\pip-egg-info’ cwd: D:\s\ut\pip-install-zqaumew5\pymssql Complete output (7 lines): c:\program files\python\38\lib\site-packages\setuptools\dist.py:45: DistDeprecationWarning: Do not call this function warnings.warn(“Do not call this function”, DistDeprecationWarning) Traceback (most recent call last): File “”, line 1, in File “D:\s\ut\pip-install-zqaumew5\pymssql\setup.py”, line 88, in from Cython.Distutils import build_ext as _build_ext ModuleNotFoundError: No module named ‘Cython’ ---------------------------------------- ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
2.whlダウンロードアドレス
3.インストール
参考:python 3.8と3.7 pyaudioのインストール